@angular/cli 12.0.1 → 12.0.2
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.
- package/package.json +11 -11
- package/utilities/install-package.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/cli",
|
|
3
|
-
"version": "12.0.
|
|
3
|
+
"version": "12.0.2",
|
|
4
4
|
"description": "CLI tool for Angular",
|
|
5
5
|
"main": "lib/cli/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
},
|
|
29
29
|
"homepage": "https://github.com/angular/angular-cli",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@angular-devkit/architect": "0.1200.
|
|
32
|
-
"@angular-devkit/core": "12.0.
|
|
33
|
-
"@angular-devkit/schematics": "12.0.
|
|
34
|
-
"@schematics/angular": "12.0.
|
|
31
|
+
"@angular-devkit/architect": "0.1200.2",
|
|
32
|
+
"@angular-devkit/core": "12.0.2",
|
|
33
|
+
"@angular-devkit/schematics": "12.0.2",
|
|
34
|
+
"@schematics/angular": "12.0.2",
|
|
35
35
|
"@yarnpkg/lockfile": "1.1.0",
|
|
36
36
|
"ansi-colors": "4.1.1",
|
|
37
37
|
"debug": "4.3.1",
|
|
@@ -52,12 +52,12 @@
|
|
|
52
52
|
"ng-update": {
|
|
53
53
|
"migrations": "@schematics/angular/migrations/migration-collection.json",
|
|
54
54
|
"packageGroup": {
|
|
55
|
-
"@angular/cli": "12.0.
|
|
56
|
-
"@angular-devkit/architect": "0.1200.
|
|
57
|
-
"@angular-devkit/build-angular": "12.0.
|
|
58
|
-
"@angular-devkit/build-webpack": "0.1200.
|
|
59
|
-
"@angular-devkit/core": "12.0.
|
|
60
|
-
"@angular-devkit/schematics": "12.0.
|
|
55
|
+
"@angular/cli": "12.0.2",
|
|
56
|
+
"@angular-devkit/architect": "0.1200.2",
|
|
57
|
+
"@angular-devkit/build-angular": "12.0.2",
|
|
58
|
+
"@angular-devkit/build-webpack": "0.1200.2",
|
|
59
|
+
"@angular-devkit/core": "12.0.2",
|
|
60
|
+
"@angular-devkit/schematics": "12.0.2"
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
63
|
"engines": {
|
|
@@ -148,7 +148,7 @@ async function runTempPackageBin(packageName, packageManager = workspace_schema_
|
|
|
148
148
|
if (!binPath) {
|
|
149
149
|
throw new Error(`Cannot locate bin for temporary package: ${packageNameNoVersion}.`);
|
|
150
150
|
}
|
|
151
|
-
const argv = [binPath
|
|
151
|
+
const argv = [`'${binPath}'`, ...args];
|
|
152
152
|
const { status, error } = child_process_1.spawnSync('node', argv, {
|
|
153
153
|
stdio: 'inherit',
|
|
154
154
|
shell: true,
|