@angular/cli 17.3.6 → 17.3.8
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 +12 -12
- package/src/commands/update/cli.js +1 -0
- package/src/utilities/version.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/cli",
|
|
3
|
-
"version": "17.3.
|
|
3
|
+
"version": "17.3.8",
|
|
4
4
|
"description": "CLI tool for Angular",
|
|
5
5
|
"main": "lib/cli/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -25,10 +25,10 @@
|
|
|
25
25
|
},
|
|
26
26
|
"homepage": "https://github.com/angular/angular-cli",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@angular-devkit/architect": "0.1703.
|
|
29
|
-
"@angular-devkit/core": "17.3.
|
|
30
|
-
"@angular-devkit/schematics": "17.3.
|
|
31
|
-
"@schematics/angular": "17.3.
|
|
28
|
+
"@angular-devkit/architect": "0.1703.8",
|
|
29
|
+
"@angular-devkit/core": "17.3.8",
|
|
30
|
+
"@angular-devkit/schematics": "17.3.8",
|
|
31
|
+
"@schematics/angular": "17.3.8",
|
|
32
32
|
"@yarnpkg/lockfile": "1.1.0",
|
|
33
33
|
"ansi-colors": "4.1.3",
|
|
34
34
|
"ini": "4.1.2",
|
|
@@ -47,13 +47,13 @@
|
|
|
47
47
|
"ng-update": {
|
|
48
48
|
"migrations": "@schematics/angular/migrations/migration-collection.json",
|
|
49
49
|
"packageGroup": {
|
|
50
|
-
"@angular/cli": "17.3.
|
|
51
|
-
"@angular/ssr": "17.3.
|
|
52
|
-
"@angular-devkit/architect": "0.1703.
|
|
53
|
-
"@angular-devkit/build-angular": "17.3.
|
|
54
|
-
"@angular-devkit/build-webpack": "0.1703.
|
|
55
|
-
"@angular-devkit/core": "17.3.
|
|
56
|
-
"@angular-devkit/schematics": "17.3.
|
|
50
|
+
"@angular/cli": "17.3.8",
|
|
51
|
+
"@angular/ssr": "17.3.8",
|
|
52
|
+
"@angular-devkit/architect": "0.1703.8",
|
|
53
|
+
"@angular-devkit/build-angular": "17.3.8",
|
|
54
|
+
"@angular-devkit/build-webpack": "0.1703.8",
|
|
55
|
+
"@angular-devkit/core": "17.3.8",
|
|
56
|
+
"@angular-devkit/schematics": "17.3.8"
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
59
|
"engines": {
|
|
@@ -785,6 +785,7 @@ class UpdateCommandModule extends command_module_1.CommandModule {
|
|
|
785
785
|
const { logger } = this.context;
|
|
786
786
|
const numberOfMigrations = optionalMigrations.length;
|
|
787
787
|
logger.info(`This package has ${numberOfMigrations} optional migration${numberOfMigrations > 1 ? 's' : ''} that can be executed.`);
|
|
788
|
+
logger.info('Optional migrations may be skipped and executed after the update process if preferred.');
|
|
788
789
|
logger.info(''); // Extra trailing newline.
|
|
789
790
|
if (!(0, tty_1.isTTY)()) {
|
|
790
791
|
for (const migration of optionalMigrations) {
|
package/src/utilities/version.js
CHANGED
|
@@ -25,5 +25,5 @@ class Version {
|
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
27
|
// TODO(bazel): Convert this to use build-time version stamping after flipping the build script to use bazel
|
|
28
|
-
// export const VERSION = new Version('17.3.
|
|
28
|
+
// export const VERSION = new Version('17.3.8');
|
|
29
29
|
exports.VERSION = new Version(JSON.parse((0, fs_1.readFileSync)((0, path_1.resolve)(__dirname, '../../package.json'), 'utf-8')).version);
|