@angular-devkit/build-angular 21.0.4 → 21.0.6
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/LICENSE +1 -1
- package/package.json +8 -8
- package/src/utils/normalize-cache.js +1 -1
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
The MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2010-
|
|
3
|
+
Copyright (c) 2010-2026 Google LLC. https://angular.dev/license
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular-devkit/build-angular",
|
|
3
|
-
"version": "21.0.
|
|
3
|
+
"version": "21.0.6",
|
|
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.2100.
|
|
11
|
-
"@angular-devkit/build-webpack": "0.2100.
|
|
12
|
-
"@angular-devkit/core": "21.0.
|
|
13
|
-
"@angular/build": "21.0.
|
|
10
|
+
"@angular-devkit/architect": "0.2100.6",
|
|
11
|
+
"@angular-devkit/build-webpack": "0.2100.6",
|
|
12
|
+
"@angular-devkit/core": "21.0.6",
|
|
13
|
+
"@angular/build": "21.0.6",
|
|
14
14
|
"@babel/core": "7.28.4",
|
|
15
15
|
"@babel/generator": "7.28.3",
|
|
16
16
|
"@babel/helper-annotate-as-pure": "7.27.3",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@babel/preset-env": "7.28.3",
|
|
22
22
|
"@babel/runtime": "7.28.4",
|
|
23
23
|
"@discoveryjs/json-ext": "0.6.3",
|
|
24
|
-
"@ngtools/webpack": "21.0.
|
|
24
|
+
"@ngtools/webpack": "21.0.6",
|
|
25
25
|
"ansi-colors": "4.1.3",
|
|
26
26
|
"autoprefixer": "10.4.21",
|
|
27
27
|
"babel-loader": "10.0.0",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"@angular/platform-browser": "^21.0.0",
|
|
72
72
|
"@angular/platform-server": "^21.0.0",
|
|
73
73
|
"@angular/service-worker": "^21.0.0",
|
|
74
|
-
"@angular/ssr": "^21.0.
|
|
74
|
+
"@angular/ssr": "^21.0.6",
|
|
75
75
|
"@web/test-runner": "^0.20.0",
|
|
76
76
|
"browser-sync": "^3.0.2",
|
|
77
77
|
"jest": "^30.2.0",
|
|
@@ -137,7 +137,7 @@
|
|
|
137
137
|
"type": "git",
|
|
138
138
|
"url": "https://github.com/angular/angular-cli.git"
|
|
139
139
|
},
|
|
140
|
-
"packageManager": "pnpm@10.
|
|
140
|
+
"packageManager": "pnpm@10.27.0",
|
|
141
141
|
"engines": {
|
|
142
142
|
"node": "^20.19.0 || ^22.12.0 || >=24.0.0",
|
|
143
143
|
"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 = '21.0.
|
|
13
|
+
const VERSION = '21.0.6';
|
|
14
14
|
function hasCacheMetadata(value) {
|
|
15
15
|
return (!!value &&
|
|
16
16
|
typeof value === 'object' &&
|