@angular/cli 18.2.1 → 19.0.0-next.1

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.
@@ -3726,12 +3726,6 @@
3726
3726
  "description": "Dev Server target options for Build Facade.",
3727
3727
  "type": "object",
3728
3728
  "properties": {
3729
- "browserTarget": {
3730
- "type": "string",
3731
- "description": "A browser builder target to serve in the format of `project:target[:configuration]`. You can also pass in more than one configuration name as a comma-separated list. Example: `project:target:production,staging`.",
3732
- "pattern": "^[^:\\s]+:[^:\\s]+(:[^\\s]+)?$",
3733
- "deprecated": true
3734
- },
3735
3729
  "buildTarget": {
3736
3730
  "type": "string",
3737
3731
  "description": "A build builder target to serve in the format of `project:target[:configuration]`. You can also pass in more than one configuration name as a comma-separated list. Example: `project:target:production,staging`.",
@@ -3864,11 +3858,7 @@
3864
3858
  ]
3865
3859
  }
3866
3860
  },
3867
- "additionalProperties": false,
3868
- "anyOf": [
3869
- {},
3870
- {}
3871
- ]
3861
+ "additionalProperties": false
3872
3862
  },
3873
3863
  "AngularBuildBuildersExtractI18nSchema": {
3874
3864
  "title": "Extract i18n Target",
@@ -3917,12 +3907,6 @@
3917
3907
  "description": "Extract i18n target options for Build Facade.",
3918
3908
  "type": "object",
3919
3909
  "properties": {
3920
- "browserTarget": {
3921
- "type": "string",
3922
- "description": "A browser builder target to extract i18n messages in the format of `project:target[:configuration]`. You can also pass in more than one configuration name as a comma-separated list. Example: `project:target:production,staging`.",
3923
- "pattern": "^[^:\\s]+:[^:\\s]+(:[^\\s]+)?$",
3924
- "deprecated": true
3925
- },
3926
3910
  "buildTarget": {
3927
3911
  "type": "string",
3928
3912
  "description": "A builder target to extract i18n messages in the format of `project:target[:configuration]`. You can also pass in more than one configuration name as a comma-separated list. Example: `project:target:production,staging`.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/cli",
3
- "version": "18.2.1",
3
+ "version": "19.0.0-next.1",
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.1",
29
- "@angular-devkit/core": "18.2.1",
30
- "@angular-devkit/schematics": "18.2.1",
28
+ "@angular-devkit/architect": "0.1900.0-next.1",
29
+ "@angular-devkit/core": "19.0.0-next.1",
30
+ "@angular-devkit/schematics": "19.0.0-next.1",
31
31
  "@inquirer/prompts": "5.3.8",
32
32
  "@listr2/prompt-adapter-inquirer": "2.0.15",
33
- "@schematics/angular": "18.2.1",
33
+ "@schematics/angular": "19.0.0-next.1",
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.1",
50
- "@angular/build": "18.2.1",
51
- "@angular/ssr": "18.2.1",
52
- "@angular-devkit/architect": "0.1802.1",
53
- "@angular-devkit/build-angular": "18.2.1",
54
- "@angular-devkit/build-webpack": "0.1802.1",
55
- "@angular-devkit/core": "18.2.1",
56
- "@angular-devkit/schematics": "18.2.1"
49
+ "@angular/cli": "19.0.0-next.1",
50
+ "@angular/build": "19.0.0-next.1",
51
+ "@angular/ssr": "19.0.0-next.1",
52
+ "@angular-devkit/architect": "0.1900.0-next.1",
53
+ "@angular-devkit/build-angular": "19.0.0-next.1",
54
+ "@angular-devkit/build-webpack": "0.1900.0-next.1",
55
+ "@angular-devkit/core": "19.0.0-next.1",
56
+ "@angular-devkit/schematics": "19.0.0-next.1"
57
57
  }
58
58
  },
59
59
  "packageManager": "yarn@4.4.0",
@@ -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.1');
28
+ // export const VERSION = new Version('19.0.0-next.1');
29
29
  exports.VERSION = new Version(JSON.parse((0, fs_1.readFileSync)((0, path_1.resolve)(__dirname, '../../package.json'), 'utf-8')).version);