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
967
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
9.0.0-next.0
to
9.0.0-next.1
+2
-2
package.json
{
"name": "@angular-devkit/schematics",
"version": "9.0.0-next.0",
"version": "9.0.0-next.1",
"description": "Angular Schematics - Library",

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

"dependencies": {
"@angular-devkit/core": "9.0.0-next.0",
"@angular-devkit/core": "9.0.0-next.1",
"rxjs": "6.4.0"

@@ -24,0 +24,0 @@ },

@@ -115,11 +115,7 @@ "use strict";

assert(left, _content, right) {
if (left) {
if (this._assertLeft) {
throw new ContentCannotBeRemovedException();
}
if (left && this._assertLeft) {
throw new ContentCannotBeRemovedException();
}
if (right) {
if (this._assertRight) {
throw new ContentCannotBeRemovedException();
}
if (right && this._assertRight) {
throw new ContentCannotBeRemovedException();
}

@@ -126,0 +122,0 @@ }