@angular/cli 18.2.3 → 18.2.5
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 +13 -13
- package/src/commands/e2e/cli.js +4 -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": "18.2.
|
|
3
|
+
"version": "18.2.5",
|
|
4
4
|
"description": "CLI tool for Angular",
|
|
5
5
|
"main": "lib/cli/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
},
|
|
26
26
|
"homepage": "https://github.com/angular/angular-cli",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@angular-devkit/architect": "0.1802.
|
|
29
|
-
"@angular-devkit/core": "18.2.
|
|
30
|
-
"@angular-devkit/schematics": "18.2.
|
|
28
|
+
"@angular-devkit/architect": "0.1802.5",
|
|
29
|
+
"@angular-devkit/core": "18.2.5",
|
|
30
|
+
"@angular-devkit/schematics": "18.2.5",
|
|
31
31
|
"@inquirer/prompts": "5.3.8",
|
|
32
32
|
"@listr2/prompt-adapter-inquirer": "2.0.15",
|
|
33
|
-
"@schematics/angular": "18.2.
|
|
33
|
+
"@schematics/angular": "18.2.5",
|
|
34
34
|
"@yarnpkg/lockfile": "1.1.0",
|
|
35
35
|
"ini": "4.1.3",
|
|
36
36
|
"jsonc-parser": "3.3.1",
|
|
@@ -46,14 +46,14 @@
|
|
|
46
46
|
"ng-update": {
|
|
47
47
|
"migrations": "@schematics/angular/migrations/migration-collection.json",
|
|
48
48
|
"packageGroup": {
|
|
49
|
-
"@angular/cli": "18.2.
|
|
50
|
-
"@angular/build": "18.2.
|
|
51
|
-
"@angular/ssr": "18.2.
|
|
52
|
-
"@angular-devkit/architect": "0.1802.
|
|
53
|
-
"@angular-devkit/build-angular": "18.2.
|
|
54
|
-
"@angular-devkit/build-webpack": "0.1802.
|
|
55
|
-
"@angular-devkit/core": "18.2.
|
|
56
|
-
"@angular-devkit/schematics": "18.2.
|
|
49
|
+
"@angular/cli": "18.2.5",
|
|
50
|
+
"@angular/build": "18.2.5",
|
|
51
|
+
"@angular/ssr": "18.2.5",
|
|
52
|
+
"@angular-devkit/architect": "0.1802.5",
|
|
53
|
+
"@angular-devkit/build-angular": "18.2.5",
|
|
54
|
+
"@angular-devkit/build-webpack": "0.1802.5",
|
|
55
|
+
"@angular-devkit/core": "18.2.5",
|
|
56
|
+
"@angular-devkit/schematics": "18.2.5"
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
59
|
"packageManager": "yarn@4.4.0",
|
package/src/commands/e2e/cli.js
CHANGED
|
@@ -11,6 +11,10 @@ const architect_command_module_1 = require("../../command-builder/architect-comm
|
|
|
11
11
|
const command_config_1 = require("../command-config");
|
|
12
12
|
class E2eCommandModule extends architect_command_module_1.ArchitectCommandModule {
|
|
13
13
|
missingTargetChoices = [
|
|
14
|
+
{
|
|
15
|
+
name: 'Playwright',
|
|
16
|
+
value: 'playwright-ng-schematics',
|
|
17
|
+
},
|
|
14
18
|
{
|
|
15
19
|
name: 'Cypress',
|
|
16
20
|
value: '@cypress/schematic',
|
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('18.2.
|
|
28
|
+
// export const VERSION = new Version('18.2.5');
|
|
29
29
|
exports.VERSION = new Version(JSON.parse((0, fs_1.readFileSync)((0, path_1.resolve)(__dirname, '../../package.json'), 'utf-8')).version);
|