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

@angular-devkit/architect

Package Overview
Dependencies
Maintainers
2
Versions
913
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@angular-devkit/architect - npm Package Compare versions

Comparing version
0.800.2
to
0.800.3
+3
-2
node/node-modules-architect-host.js

@@ -70,4 +70,5 @@ "use strict";

}
if (target.configuration && !targetSpec['configurations']) {
throw new Error('Configuration not set in the workspace.');
if (target.configuration
&& !(targetSpec['configurations'] && targetSpec['configurations'][target.configuration])) {
throw new Error(`Configuration '${target.configuration}' is not set in the workspace.`);
}

@@ -74,0 +75,0 @@ return {

+2
-2
{
"name": "@angular-devkit/architect",
"version": "0.800.2",
"version": "0.800.3",
"description": "Angular Build Facade",

@@ -9,3 +9,3 @@ "experimental": true,

"dependencies": {
"@angular-devkit/core": "8.0.2",
"@angular-devkit/core": "8.0.3",
"rxjs": "6.4.0"

@@ -12,0 +12,0 @@ },

@@ -242,3 +242,4 @@ "use strict";

scheduleBuilder(name, options, scheduleOptions = {}) {
if (!/^[^:]+:[^:]+$/.test(name)) {
// The below will match 'project:target:configuration'
if (!/^[^:]+:[^:]+(:[^:]+)?$/.test(name)) {
throw new Error('Invalid builder name: ' + JSON.stringify(name));

@@ -245,0 +246,0 @@ }