@angular-devkit/architect 0.1902.0 → 0.2000.0-next.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -92,7 +92,7 @@ class WorkspaceNodeModulesArchitectHost {
92
92
  return (targetDefinition.options ?? {});
93
93
  }
94
94
  if (!targetDefinition.configurations?.[configuration]) {
95
- throw new Error(`Configuration '${configuration}' is not set in the workspace.`);
95
+ throw new Error(`Configuration '${configuration}' for target '${target}' in project '${project}' is not set in the workspace.`);
96
96
  }
97
97
  return (targetDefinition.configurations?.[configuration] ?? {});
98
98
  },
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@angular-devkit/architect",
3
- "version": "0.1902.0",
3
+ "version": "0.2000.0-next.0",
4
4
  "description": "Angular Build Facade",
5
5
  "experimental": true,
6
6
  "main": "src/index.js",
7
7
  "typings": "src/index.d.ts",
8
8
  "dependencies": {
9
- "@angular-devkit/core": "19.2.0",
10
- "rxjs": "7.8.1"
9
+ "@angular-devkit/core": "20.0.0-next.0",
10
+ "rxjs": "7.8.2"
11
11
  },
12
12
  "builders": "./builders/builders.json",
13
13
  "keywords": [
@@ -22,7 +22,7 @@
22
22
  "url": "https://github.com/angular/angular-cli.git"
23
23
  },
24
24
  "engines": {
25
- "node": "^18.19.1 || ^20.11.1 || >=22.0.0",
25
+ "node": "^20.11.1 || >=22.0.0",
26
26
  "npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
27
27
  "yarn": ">= 1.13.0"
28
28
  },