@angular/cli 10.1.3 → 10.1.7
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/commands/update-impl.js +1 -1
- package/lib/config/schema.json +2 -0
- package/package.json +12 -12
package/commands/update-impl.js
CHANGED
|
@@ -171,7 +171,7 @@ class UpdateCommand extends command_1.Command {
|
|
|
171
171
|
if (commit) {
|
|
172
172
|
const commitPrefix = `${packageName} migration - ${migration.name}`;
|
|
173
173
|
const commitMessage = migration.description
|
|
174
|
-
? `${commitPrefix}\n${migration.description}`
|
|
174
|
+
? `${commitPrefix}\n\n${migration.description}`
|
|
175
175
|
: commitPrefix;
|
|
176
176
|
const committed = this.commit(commitMessage);
|
|
177
177
|
if (!committed) {
|
package/lib/config/schema.json
CHANGED
|
@@ -1239,6 +1239,7 @@
|
|
|
1239
1239
|
},
|
|
1240
1240
|
"optimization": {
|
|
1241
1241
|
"description": "Enable optimization of the build output.",
|
|
1242
|
+
"default": false,
|
|
1242
1243
|
"oneOf": [
|
|
1243
1244
|
{
|
|
1244
1245
|
"type": "object",
|
|
@@ -1729,6 +1730,7 @@
|
|
|
1729
1730
|
},
|
|
1730
1731
|
"optimization": {
|
|
1731
1732
|
"description": "Enables optimization of the build output.",
|
|
1733
|
+
"default": false,
|
|
1732
1734
|
"oneOf": [
|
|
1733
1735
|
{
|
|
1734
1736
|
"type": "object",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/cli",
|
|
3
|
-
"version": "10.1.
|
|
3
|
+
"version": "10.1.7",
|
|
4
4
|
"description": "CLI tool for Angular",
|
|
5
5
|
"main": "lib/cli/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
},
|
|
29
29
|
"homepage": "https://github.com/angular/angular-cli",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@angular-devkit/architect": "0.1001.
|
|
32
|
-
"@angular-devkit/core": "10.1.
|
|
33
|
-
"@angular-devkit/schematics": "10.1.
|
|
34
|
-
"@schematics/angular": "10.1.
|
|
35
|
-
"@schematics/update": "0.1001.
|
|
31
|
+
"@angular-devkit/architect": "0.1001.7",
|
|
32
|
+
"@angular-devkit/core": "10.1.7",
|
|
33
|
+
"@angular-devkit/schematics": "10.1.7",
|
|
34
|
+
"@schematics/angular": "10.1.7",
|
|
35
|
+
"@schematics/update": "0.1001.7",
|
|
36
36
|
"@yarnpkg/lockfile": "1.1.0",
|
|
37
37
|
"ansi-colors": "4.1.1",
|
|
38
38
|
"debug": "4.1.1",
|
|
@@ -52,12 +52,12 @@
|
|
|
52
52
|
"ng-update": {
|
|
53
53
|
"migrations": "@schematics/angular/migrations/migration-collection.json",
|
|
54
54
|
"packageGroup": {
|
|
55
|
-
"@angular/cli": "10.1.
|
|
56
|
-
"@angular-devkit/build-angular": "0.1001.
|
|
57
|
-
"@angular-devkit/build-ng-packagr": "0.1001.
|
|
58
|
-
"@angular-devkit/build-webpack": "0.1001.
|
|
59
|
-
"@angular-devkit/core": "10.1.
|
|
60
|
-
"@angular-devkit/schematics": "10.1.
|
|
55
|
+
"@angular/cli": "10.1.7",
|
|
56
|
+
"@angular-devkit/build-angular": "0.1001.7",
|
|
57
|
+
"@angular-devkit/build-ng-packagr": "0.1001.7",
|
|
58
|
+
"@angular-devkit/build-webpack": "0.1001.7",
|
|
59
|
+
"@angular-devkit/core": "10.1.7",
|
|
60
|
+
"@angular-devkit/schematics": "10.1.7"
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
63
|
"engines": {
|