@angular/cli 17.1.1 → 17.1.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 +12 -12
- package/src/commands/deploy/cli.js +2 -6
- 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.1.
|
|
3
|
+
"version": "17.1.2",
|
|
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.1701.
|
|
29
|
-
"@angular-devkit/core": "17.1.
|
|
30
|
-
"@angular-devkit/schematics": "17.1.
|
|
31
|
-
"@schematics/angular": "17.1.
|
|
28
|
+
"@angular-devkit/architect": "0.1701.2",
|
|
29
|
+
"@angular-devkit/core": "17.1.2",
|
|
30
|
+
"@angular-devkit/schematics": "17.1.2",
|
|
31
|
+
"@schematics/angular": "17.1.2",
|
|
32
32
|
"@yarnpkg/lockfile": "1.1.0",
|
|
33
33
|
"ansi-colors": "4.1.3",
|
|
34
34
|
"ini": "4.1.1",
|
|
@@ -47,13 +47,13 @@
|
|
|
47
47
|
"ng-update": {
|
|
48
48
|
"migrations": "@schematics/angular/migrations/migration-collection.json",
|
|
49
49
|
"packageGroup": {
|
|
50
|
-
"@angular/cli": "17.1.
|
|
51
|
-
"@angular/ssr": "17.1.
|
|
52
|
-
"@angular-devkit/architect": "0.1701.
|
|
53
|
-
"@angular-devkit/build-angular": "17.1.
|
|
54
|
-
"@angular-devkit/build-webpack": "0.1701.
|
|
55
|
-
"@angular-devkit/core": "17.1.
|
|
56
|
-
"@angular-devkit/schematics": "17.1.
|
|
50
|
+
"@angular/cli": "17.1.2",
|
|
51
|
+
"@angular/ssr": "17.1.2",
|
|
52
|
+
"@angular-devkit/architect": "0.1701.2",
|
|
53
|
+
"@angular-devkit/build-angular": "17.1.2",
|
|
54
|
+
"@angular-devkit/build-webpack": "0.1701.2",
|
|
55
|
+
"@angular-devkit/core": "17.1.2",
|
|
56
|
+
"@angular-devkit/schematics": "17.1.2"
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
59
|
"engines": {
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* found in the LICENSE file at https://angular.io/license
|
|
8
8
|
*/
|
|
9
9
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
-
const
|
|
10
|
+
const node_path_1 = require("node:path");
|
|
11
11
|
const architect_command_module_1 = require("../../command-builder/architect-command-module");
|
|
12
12
|
class DeployCommandModule extends architect_command_module_1.ArchitectCommandModule {
|
|
13
13
|
// The below choices should be kept in sync with the list in https://angular.io/guide/deployment
|
|
@@ -24,10 +24,6 @@ class DeployCommandModule extends architect_command_module_1.ArchitectCommandMod
|
|
|
24
24
|
name: 'Netlify',
|
|
25
25
|
value: '@netlify-builder/deploy',
|
|
26
26
|
},
|
|
27
|
-
{
|
|
28
|
-
name: 'NPM',
|
|
29
|
-
value: 'ngx-deploy-npm',
|
|
30
|
-
},
|
|
31
27
|
{
|
|
32
28
|
name: 'GitHub Pages',
|
|
33
29
|
value: 'angular-cli-ghpages',
|
|
@@ -35,7 +31,7 @@ class DeployCommandModule extends architect_command_module_1.ArchitectCommandMod
|
|
|
35
31
|
];
|
|
36
32
|
multiTarget = false;
|
|
37
33
|
command = 'deploy [project]';
|
|
38
|
-
longDescriptionPath = (0,
|
|
34
|
+
longDescriptionPath = (0, node_path_1.join)(__dirname, 'long-description.md');
|
|
39
35
|
describe = 'Invokes the deploy builder for a specified project or for the default project in the workspace.';
|
|
40
36
|
}
|
|
41
37
|
exports.default = DeployCommandModule;
|
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.1.
|
|
28
|
+
// export const VERSION = new Version('17.1.2');
|
|
29
29
|
exports.VERSION = new Version(JSON.parse((0, fs_1.readFileSync)((0, path_1.resolve)(__dirname, '../../package.json'), 'utf-8')).version);
|