You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@angular-devkit/schematics

Package Overview
Dependencies
Maintainers
2
Versions
964
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@angular-devkit/schematics - npm Package Compare versions

Comparing version
8.1.0-beta.2
to
8.1.0-beta.3
+3
-2
package.json
{
"name": "@angular-devkit/schematics",
"version": "8.1.0-beta.2",
"version": "8.1.0-beta.3",
"description": "Angular Schematics - Library",

@@ -21,3 +21,3 @@ "main": "src/index.js",

"dependencies": {
"@angular-devkit/core": "8.1.0-beta.2",
"@angular-devkit/core": "8.1.0-beta.3",
"rxjs": "6.4.0"

@@ -41,2 +41,3 @@ },

"hooks": {
"pre-commit": "lint-staged",
"pre-push": "node ./bin/devkit-admin hooks/pre-push"

@@ -43,0 +44,0 @@ }

+1
-0

@@ -25,2 +25,3 @@ /**

readonly tasks: TaskConfiguration[];
registerCollection(collectionName: string, collectionPath: string): void;
runSchematicAsync<SchematicSchemaT>(schematicName: string, opts?: SchematicSchemaT, tree?: Tree): Observable<UnitTestTree>;

@@ -27,0 +28,0 @@ /**

@@ -51,2 +51,5 @@ "use strict";

get tasks() { return [...this._engineHost.tasks]; }
registerCollection(collectionName, collectionPath) {
this._engineHost.registerCollection(collectionName, collectionPath);
}
runSchematicAsync(schematicName, opts, tree) {

@@ -53,0 +56,0 @@ const schematic = this._collection.createSchematic(schematicName, true);