@angular-devkit/build-angular 20.3.5 → 20.3.7

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,16 +1,16 @@
1
1
  {
2
2
  "name": "@angular-devkit/build-angular",
3
- "version": "20.3.5",
3
+ "version": "20.3.7",
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.2003.5",
11
- "@angular-devkit/build-webpack": "0.2003.5",
12
- "@angular-devkit/core": "20.3.5",
13
- "@angular/build": "20.3.5",
10
+ "@angular-devkit/architect": "0.2003.7",
11
+ "@angular-devkit/build-webpack": "0.2003.7",
12
+ "@angular-devkit/core": "20.3.7",
13
+ "@angular/build": "20.3.7",
14
14
  "@babel/core": "7.28.3",
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.3",
23
23
  "@discoveryjs/json-ext": "0.6.3",
24
- "@ngtools/webpack": "20.3.5",
24
+ "@ngtools/webpack": "20.3.7",
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": "^20.0.0",
72
72
  "@angular/platform-server": "^20.0.0",
73
73
  "@angular/service-worker": "^20.0.0",
74
- "@angular/ssr": "^20.3.5",
74
+ "@angular/ssr": "^20.3.7",
75
75
  "@web/test-runner": "^0.20.0",
76
76
  "browser-sync": "^3.0.2",
77
77
  "jest": "^29.5.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.18.1",
140
+ "packageManager": "pnpm@10.18.3",
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",
@@ -12,7 +12,8 @@ export type Schema = {
12
12
  */
13
13
  aot?: boolean;
14
14
  /**
15
- * List of static application assets.
15
+ * Define the assets to be copied to the output directory. These assets are copied as-is
16
+ * without any further processing or hashing.
16
17
  */
17
18
  assets?: AssetPattern[];
18
19
  /**
@@ -95,6 +96,12 @@ export type Schema = {
95
96
  optimization?: OptimizationUnion;
96
97
  /**
97
98
  * Define the output filename cache-busting hashing mode.
99
+ *
100
+ * - `none`: No hashing.
101
+ * - `all`: Hash for all output bundles.
102
+ * - `media`: Hash for all output media (e.g., images, fonts, etc. that are referenced in
103
+ * CSS files).
104
+ * - `bundles`: Hash for output of lazy and main bundles.
98
105
  */
99
106
  outputHashing?: OutputHashing;
100
107
  /**
@@ -353,6 +360,12 @@ export type StylesClass = {
353
360
  };
354
361
  /**
355
362
  * Define the output filename cache-busting hashing mode.
363
+ *
364
+ * - `none`: No hashing.
365
+ * - `all`: Hash for all output bundles.
366
+ * - `media`: Hash for all output media (e.g., images, fonts, etc. that are referenced in
367
+ * CSS files).
368
+ * - `bundles`: Hash for output of lazy and main bundles.
356
369
  */
357
370
  export declare enum OutputHashing {
358
371
  All = "all",
@@ -48,6 +48,12 @@ var InlineStyleLanguage;
48
48
  })(InlineStyleLanguage || (exports.InlineStyleLanguage = InlineStyleLanguage = {}));
49
49
  /**
50
50
  * Define the output filename cache-busting hashing mode.
51
+ *
52
+ * - `none`: No hashing.
53
+ * - `all`: Hash for all output bundles.
54
+ * - `media`: Hash for all output media (e.g., images, fonts, etc. that are referenced in
55
+ * CSS files).
56
+ * - `bundles`: Hash for output of lazy and main bundles.
51
57
  */
52
58
  var OutputHashing;
53
59
  (function (OutputHashing) {
@@ -6,7 +6,7 @@
6
6
  "properties": {
7
7
  "assets": {
8
8
  "type": "array",
9
- "description": "List of static application assets.",
9
+ "description": "Define the assets to be copied to the output directory. These assets are copied as-is without any further processing or hashing.",
10
10
  "default": [],
11
11
  "items": {
12
12
  "$ref": "#/definitions/assetPattern"
@@ -319,7 +319,7 @@
319
319
  },
320
320
  "outputHashing": {
321
321
  "type": "string",
322
- "description": "Define the output filename cache-busting hashing mode.",
322
+ "description": "Define the output filename cache-busting hashing mode.\n\n- `none`: No hashing.\n- `all`: Hash for all output bundles. \n- `media`: Hash for all output media (e.g., images, fonts, etc. that are referenced in CSS files).\n- `bundles`: Hash for output of lazy and main bundles.",
323
323
  "default": "none",
324
324
  "enum": ["none", "all", "media", "bundles"]
325
325
  },
@@ -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.3.5';
13
+ const VERSION = '20.3.7';
14
14
  function hasCacheMetadata(value) {
15
15
  return (!!value &&
16
16
  typeof value === 'object' &&