@angular/build 20.1.0-next.3 → 20.1.0-rc.0

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/build",
3
- "version": "20.1.0-next.3",
3
+ "version": "20.1.0-rc.0",
4
4
  "description": "Official build system for Angular",
5
5
  "keywords": [
6
6
  "Angular CLI",
@@ -23,12 +23,12 @@
23
23
  "builders": "builders.json",
24
24
  "dependencies": {
25
25
  "@ampproject/remapping": "2.3.0",
26
- "@angular-devkit/architect": "0.2001.0-next.3",
27
- "@babel/core": "7.27.4",
26
+ "@angular-devkit/architect": "0.2001.0-rc.0",
27
+ "@babel/core": "7.27.7",
28
28
  "@babel/helper-annotate-as-pure": "7.27.3",
29
29
  "@babel/helper-split-export-declaration": "7.24.7",
30
- "@inquirer/confirm": "5.1.12",
31
- "@vitejs/plugin-basic-ssl": "2.0.0",
30
+ "@inquirer/confirm": "5.1.13",
31
+ "@vitejs/plugin-basic-ssl": "2.1.0",
32
32
  "beasties": "0.3.4",
33
33
  "browserslist": "^4.23.0",
34
34
  "esbuild": "0.25.5",
@@ -40,8 +40,8 @@
40
40
  "mrmime": "2.0.1",
41
41
  "parse5-html-rewriting-stream": "7.1.0",
42
42
  "picomatch": "4.0.2",
43
- "piscina": "5.1.1",
44
- "rollup": "4.44.0",
43
+ "piscina": "5.1.2",
44
+ "rollup": "4.44.1",
45
45
  "sass": "1.89.2",
46
46
  "semver": "7.7.2",
47
47
  "source-map-support": "0.5.21",
@@ -50,7 +50,7 @@
50
50
  "watchpack": "2.4.4"
51
51
  },
52
52
  "optionalDependencies": {
53
- "lmdb": "3.4.0"
53
+ "lmdb": "3.4.1"
54
54
  },
55
55
  "peerDependencies": {
56
56
  "@angular/core": "^20.0.0 || ^20.1.0-next.0",
@@ -60,7 +60,7 @@
60
60
  "@angular/platform-browser": "^20.0.0 || ^20.1.0-next.0",
61
61
  "@angular/platform-server": "^20.0.0 || ^20.1.0-next.0",
62
62
  "@angular/service-worker": "^20.0.0 || ^20.1.0-next.0",
63
- "@angular/ssr": "^20.1.0-next.3",
63
+ "@angular/ssr": "^20.1.0-rc.0",
64
64
  "karma": "^6.4.0",
65
65
  "less": "^4.2.0",
66
66
  "ng-packagr": "^20.0.0 || ^20.1.0-next.0",
@@ -99,6 +99,7 @@ function getBuiltInKarmaConfig(workspaceRoot, projectName) {
99
99
  // Any changes to the config here need to be synced to: packages/schematics/angular/config/files/karma.conf.js.template
100
100
  return {
101
101
  basePath: '',
102
+ rootUrl: '/',
102
103
  frameworks: ['jasmine'],
103
104
  plugins: [
104
105
  'karma-jasmine',
@@ -106,6 +107,9 @@ function getBuiltInKarmaConfig(workspaceRoot, projectName) {
106
107
  'karma-jasmine-html-reporter',
107
108
  'karma-coverage',
108
109
  ].map((p) => workspaceRootRequire(p)),
110
+ proxies: {
111
+ '/': '/base/',
112
+ },
109
113
  jasmineHtmlReporter: {
110
114
  suppressAll: true, // removes the duplicated traces
111
115
  },
@@ -10,7 +10,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
10
10
  exports.normalizeCacheOptions = normalizeCacheOptions;
11
11
  const node_path_1 = require("node:path");
12
12
  /** Version placeholder is replaced during the build process with actual package version */
13
- const VERSION = '20.1.0-next.3';
13
+ const VERSION = '20.1.0-rc.0';
14
14
  function hasCacheMetadata(value) {
15
15
  return (!!value &&
16
16
  typeof value === 'object' &&