@angular/cli 14.0.0-next.1 → 14.0.0-next.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.
@@ -15,17 +15,6 @@ class ExtractI18nCommand extends architect_command_1.ArchitectCommand {
15
15
  this.target = 'extract-i18n';
16
16
  }
17
17
  async run(options) {
18
- const version = process.version.substr(1).split('.');
19
- if (Number(version[0]) === 12 && Number(version[1]) === 0) {
20
- this.logger.error('Due to a defect in Node.js 12.0, the command is not supported on this Node.js version. ' +
21
- 'Please upgrade to Node.js 12.1 or later.');
22
- return 1;
23
- }
24
- const commandName = process.argv[2];
25
- if (['xi18n', 'i18n-extract'].includes(commandName)) {
26
- this.logger.warn(`Warning: "ng ${commandName}" has been deprecated and will be removed in a future major version. ` +
27
- 'Please use "ng extract-i18n" instead.');
28
- }
29
18
  return this.runArchitectTarget(options);
30
19
  }
31
20
  }
@@ -3,8 +3,6 @@
3
3
  "$id": "ng-cli://commands/extract-i18n.json",
4
4
  "description": "Extracts i18n messages from source code.",
5
5
  "$longDescription": "",
6
-
7
- "$aliases": ["i18n-extract", "xi18n"],
8
6
  "$scope": "in",
9
7
  "$type": "architect",
10
8
  "$impl": "./extract-i18n-impl#ExtractI18nCommand",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/cli",
3
- "version": "14.0.0-next.1",
3
+ "version": "14.0.0-next.2",
4
4
  "description": "CLI tool for Angular",
5
5
  "main": "lib/cli/index.js",
6
6
  "bin": {
@@ -28,21 +28,21 @@
28
28
  },
29
29
  "homepage": "https://github.com/angular/angular-cli",
30
30
  "dependencies": {
31
- "@angular-devkit/architect": "0.1400.0-next.1",
32
- "@angular-devkit/core": "14.0.0-next.1",
33
- "@angular-devkit/schematics": "14.0.0-next.1",
34
- "@schematics/angular": "14.0.0-next.1",
31
+ "@angular-devkit/architect": "0.1400.0-next.2",
32
+ "@angular-devkit/core": "14.0.0-next.2",
33
+ "@angular-devkit/schematics": "14.0.0-next.2",
34
+ "@schematics/angular": "14.0.0-next.2",
35
35
  "@yarnpkg/lockfile": "1.1.0",
36
36
  "ansi-colors": "4.1.1",
37
37
  "debug": "4.3.3",
38
38
  "ini": "2.0.0",
39
39
  "inquirer": "8.2.0",
40
40
  "jsonc-parser": "3.0.0",
41
- "npm-package-arg": "8.1.5",
42
- "npm-pick-manifest": "6.1.1",
41
+ "npm-package-arg": "9.0.0",
42
+ "npm-pick-manifest": "7.0.0",
43
43
  "open": "8.4.0",
44
44
  "ora": "5.4.1",
45
- "pacote": "12.0.3",
45
+ "pacote": "13.0.2",
46
46
  "resolve": "1.22.0",
47
47
  "semver": "7.3.5",
48
48
  "symbol-observable": "4.0.0",
@@ -51,12 +51,12 @@
51
51
  "ng-update": {
52
52
  "migrations": "@schematics/angular/migrations/migration-collection.json",
53
53
  "packageGroup": {
54
- "@angular/cli": "14.0.0-next.1",
55
- "@angular-devkit/architect": "0.1400.0-next.1",
56
- "@angular-devkit/build-angular": "14.0.0-next.1",
57
- "@angular-devkit/build-webpack": "0.1400.0-next.1",
58
- "@angular-devkit/core": "14.0.0-next.1",
59
- "@angular-devkit/schematics": "14.0.0-next.1"
54
+ "@angular/cli": "14.0.0-next.2",
55
+ "@angular-devkit/architect": "0.1400.0-next.2",
56
+ "@angular-devkit/build-angular": "14.0.0-next.2",
57
+ "@angular-devkit/build-webpack": "0.1400.0-next.2",
58
+ "@angular-devkit/core": "14.0.0-next.2",
59
+ "@angular-devkit/schematics": "14.0.0-next.2"
60
60
  }
61
61
  },
62
62
  "engines": {