@angular/cli 18.0.0-next.5 → 18.0.0-rc.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.
@@ -3685,6 +3685,7 @@
3685
3685
  },
3686
3686
  "prebundle": {
3687
3687
  "description": "Enable and control the Vite-based development server's prebundling capabilities. To enable prebundling, the Angular CLI cache must also be enabled.",
3688
+ "default": true,
3688
3689
  "oneOf": [
3689
3690
  {
3690
3691
  "type": "boolean"
@@ -3931,11 +3932,7 @@
3931
3932
  "description": "Name of the file to output."
3932
3933
  }
3933
3934
  },
3934
- "additionalProperties": false,
3935
- "anyOf": [
3936
- {},
3937
- {}
3938
- ]
3935
+ "additionalProperties": false
3939
3936
  },
3940
3937
  "AngularDevkitBuildAngularBuildersKarmaSchema": {
3941
3938
  "title": "Karma Target",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/cli",
3
- "version": "18.0.0-next.5",
3
+ "version": "18.0.0-rc.1",
4
4
  "description": "CLI tool for Angular",
5
5
  "main": "lib/cli/index.js",
6
6
  "bin": {
@@ -25,19 +25,19 @@
25
25
  },
26
26
  "homepage": "https://github.com/angular/angular-cli",
27
27
  "dependencies": {
28
- "@angular-devkit/architect": "0.1800.0-next.5",
29
- "@angular-devkit/core": "18.0.0-next.5",
30
- "@angular-devkit/schematics": "18.0.0-next.5",
31
- "@schematics/angular": "18.0.0-next.5",
28
+ "@angular-devkit/architect": "0.1800.0-rc.1",
29
+ "@angular-devkit/core": "18.0.0-rc.1",
30
+ "@angular-devkit/schematics": "18.0.0-rc.1",
31
+ "@schematics/angular": "18.0.0-rc.1",
32
32
  "@yarnpkg/lockfile": "1.1.0",
33
33
  "ansi-colors": "4.1.3",
34
34
  "ini": "4.1.2",
35
- "inquirer": "9.2.19",
35
+ "inquirer": "9.2.20",
36
36
  "jsonc-parser": "3.2.1",
37
37
  "npm-package-arg": "11.0.2",
38
38
  "npm-pick-manifest": "9.0.0",
39
39
  "ora": "5.4.1",
40
- "pacote": "18.0.2",
40
+ "pacote": "18.0.3",
41
41
  "resolve": "1.22.8",
42
42
  "semver": "7.6.0",
43
43
  "symbol-observable": "4.0.0",
@@ -46,13 +46,14 @@
46
46
  "ng-update": {
47
47
  "migrations": "@schematics/angular/migrations/migration-collection.json",
48
48
  "packageGroup": {
49
- "@angular/cli": "18.0.0-next.5",
50
- "@angular/ssr": "18.0.0-next.5",
51
- "@angular-devkit/architect": "0.1800.0-next.5",
52
- "@angular-devkit/build-angular": "18.0.0-next.5",
53
- "@angular-devkit/build-webpack": "0.1800.0-next.5",
54
- "@angular-devkit/core": "18.0.0-next.5",
55
- "@angular-devkit/schematics": "18.0.0-next.5"
49
+ "@angular/build": "18.0.0-rc.1",
50
+ "@angular/cli": "18.0.0-rc.1",
51
+ "@angular/ssr": "18.0.0-rc.1",
52
+ "@angular-devkit/architect": "0.1800.0-rc.1",
53
+ "@angular-devkit/build-angular": "18.0.0-rc.1",
54
+ "@angular-devkit/build-webpack": "0.1800.0-rc.1",
55
+ "@angular-devkit/core": "18.0.0-rc.1",
56
+ "@angular-devkit/schematics": "18.0.0-rc.1"
56
57
  }
57
58
  },
58
59
  "engines": {
@@ -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.0.0-next.5');
28
+ // export const VERSION = new Version('18.0.0-rc.1');
29
29
  exports.VERSION = new Version(JSON.parse((0, fs_1.readFileSync)((0, path_1.resolve)(__dirname, '../../package.json'), 'utf-8')).version);