@angular-devkit/build-angular 19.2.1 → 19.2.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.
- package/package.json +10 -9
- package/src/utils/normalize-cache.js +1 -1
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular-devkit/build-angular",
|
|
3
|
-
"version": "19.2.
|
|
3
|
+
"version": "19.2.2",
|
|
4
4
|
"description": "Angular Webpack Build Facade",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"typings": "src/index.d.ts",
|
|
7
7
|
"builders": "builders.json",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@ampproject/remapping": "2.3.0",
|
|
10
|
-
"@angular-devkit/architect": "0.1902.
|
|
11
|
-
"@angular-devkit/build-webpack": "0.1902.
|
|
12
|
-
"@angular-devkit/core": "19.2.
|
|
13
|
-
"@angular/build": "19.2.
|
|
10
|
+
"@angular-devkit/architect": "0.1902.2",
|
|
11
|
+
"@angular-devkit/build-webpack": "0.1902.2",
|
|
12
|
+
"@angular-devkit/core": "19.2.2",
|
|
13
|
+
"@angular/build": "19.2.2",
|
|
14
14
|
"@babel/core": "7.26.9",
|
|
15
15
|
"@babel/generator": "7.26.9",
|
|
16
16
|
"@babel/helper-annotate-as-pure": "7.25.9",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@babel/preset-env": "7.26.9",
|
|
22
22
|
"@babel/runtime": "7.26.9",
|
|
23
23
|
"@discoveryjs/json-ext": "0.6.3",
|
|
24
|
-
"@ngtools/webpack": "19.2.
|
|
24
|
+
"@ngtools/webpack": "19.2.2",
|
|
25
25
|
"@vitejs/plugin-basic-ssl": "1.2.0",
|
|
26
26
|
"ansi-colors": "4.1.3",
|
|
27
27
|
"autoprefixer": "10.4.20",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"browserslist": "^4.21.5",
|
|
30
30
|
"copy-webpack-plugin": "12.0.2",
|
|
31
31
|
"css-loader": "7.1.2",
|
|
32
|
-
"esbuild-wasm": "0.25.
|
|
32
|
+
"esbuild-wasm": "0.25.1",
|
|
33
33
|
"fast-glob": "3.3.3",
|
|
34
34
|
"http-proxy-middleware": "3.0.3",
|
|
35
35
|
"istanbul-lib-instrument": "6.0.3",
|
|
@@ -63,14 +63,14 @@
|
|
|
63
63
|
"webpack-subresource-integrity": "5.1.0"
|
|
64
64
|
},
|
|
65
65
|
"optionalDependencies": {
|
|
66
|
-
"esbuild": "0.25.
|
|
66
|
+
"esbuild": "0.25.1"
|
|
67
67
|
},
|
|
68
68
|
"peerDependencies": {
|
|
69
69
|
"@angular/compiler-cli": "^19.0.0 || ^19.2.0-next.0",
|
|
70
70
|
"@angular/localize": "^19.0.0 || ^19.2.0-next.0",
|
|
71
71
|
"@angular/platform-server": "^19.0.0 || ^19.2.0-next.0",
|
|
72
72
|
"@angular/service-worker": "^19.0.0 || ^19.2.0-next.0",
|
|
73
|
-
"@angular/ssr": "^19.2.
|
|
73
|
+
"@angular/ssr": "^19.2.2",
|
|
74
74
|
"@web/test-runner": "^0.20.0",
|
|
75
75
|
"browser-sync": "^3.0.2",
|
|
76
76
|
"jest": "^29.5.0",
|
|
@@ -130,6 +130,7 @@
|
|
|
130
130
|
"type": "git",
|
|
131
131
|
"url": "https://github.com/angular/angular-cli.git"
|
|
132
132
|
},
|
|
133
|
+
"packageManager": "pnpm@9.15.6",
|
|
133
134
|
"engines": {
|
|
134
135
|
"node": "^18.19.1 || ^20.11.1 || >=22.0.0",
|
|
135
136
|
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
|
|
@@ -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 = '19.2.
|
|
13
|
+
const VERSION = '19.2.2';
|
|
14
14
|
function hasCacheMetadata(value) {
|
|
15
15
|
return (!!value &&
|
|
16
16
|
typeof value === 'object' &&
|