@angular-devkit/build-angular 22.1.0-next.4 → 22.1.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,16 +1,16 @@
1
1
  {
2
2
  "name": "@angular-devkit/build-angular",
3
- "version": "22.1.0-next.4",
3
+ "version": "22.1.0",
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.2201.0-next.4",
11
- "@angular-devkit/build-webpack": "0.2201.0-next.4",
12
- "@angular-devkit/core": "22.1.0-next.4",
13
- "@angular/build": "22.1.0-next.4",
10
+ "@angular-devkit/architect": "0.2201.0",
11
+ "@angular-devkit/build-webpack": "0.2201.0",
12
+ "@angular-devkit/core": "22.1.0",
13
+ "@angular/build": "22.1.0",
14
14
  "@babel/core": "8.0.1",
15
15
  "@babel/generator": "8.0.0",
16
16
  "@babel/helper-annotate-as-pure": "8.0.0",
@@ -21,9 +21,9 @@
21
21
  "@babel/preset-env": "8.0.2",
22
22
  "@babel/runtime": "8.0.0",
23
23
  "@discoveryjs/json-ext": "1.1.0",
24
- "@ngtools/webpack": "22.1.0-next.4",
24
+ "@ngtools/webpack": "22.1.0",
25
25
  "ansi-colors": "4.1.3",
26
- "autoprefixer": "10.5.2",
26
+ "autoprefixer": "10.5.4",
27
27
  "babel-loader": "10.1.1",
28
28
  "browserslist": "^4.26.0",
29
29
  "copy-webpack-plugin": "14.0.0",
@@ -42,7 +42,7 @@
42
42
  "ora": "9.4.1",
43
43
  "picomatch": "4.0.5",
44
44
  "piscina": "5.2.0",
45
- "postcss": "8.5.16",
45
+ "postcss": "8.5.19",
46
46
  "postcss-loader": "8.2.1",
47
47
  "resolve-url-loader": "5.0.0",
48
48
  "rxjs": "7.8.2",
@@ -64,16 +64,16 @@
64
64
  "esbuild": "0.28.1"
65
65
  },
66
66
  "peerDependencies": {
67
- "@angular/compiler-cli": "^22.0.0 || ^22.1.0-next.0",
68
- "@angular/core": "^22.0.0 || ^22.1.0-next.0",
69
- "@angular/localize": "^22.0.0 || ^22.1.0-next.0",
70
- "@angular/platform-browser": "^22.0.0 || ^22.1.0-next.0",
71
- "@angular/platform-server": "^22.0.0 || ^22.1.0-next.0",
72
- "@angular/service-worker": "^22.0.0 || ^22.1.0-next.0",
73
- "@angular/ssr": "^22.1.0-next.4",
67
+ "@angular/compiler-cli": "^22.0.0",
68
+ "@angular/core": "^22.0.0",
69
+ "@angular/localize": "^22.0.0",
70
+ "@angular/platform-browser": "^22.0.0",
71
+ "@angular/platform-server": "^22.0.0",
72
+ "@angular/service-worker": "^22.0.0",
73
+ "@angular/ssr": "^22.1.0",
74
74
  "browser-sync": "^3.0.2",
75
75
  "karma": "^6.3.0",
76
- "ng-packagr": "^22.0.0 || ^22.1.0-next.0",
76
+ "ng-packagr": "^22.0.0",
77
77
  "tailwindcss": "^2.0.0 || ^3.0.0 || ^4.0.0",
78
78
  "typescript": ">=6.0 <6.1"
79
79
  },
@@ -307,7 +307,7 @@ export declare enum InlineStyleLanguage {
307
307
  /**
308
308
  * Translate the bundles in one or more locales.
309
309
  */
310
- export type Localize = string[] | boolean;
310
+ export type Localize = [string, ...string[]] | boolean;
311
311
  /**
312
312
  * Enables optimization of the build output. Including minification of scripts and styles,
313
313
  * tree-shaking, dead-code elimination, inlining of critical CSS and fonts inlining. For
@@ -303,7 +303,7 @@ export declare enum InlineStyleLanguage {
303
303
  /**
304
304
  * Translate the bundles in one or more locales.
305
305
  */
306
- export type Localize = string[] | boolean;
306
+ export type Localize = [string, ...string[]] | boolean;
307
307
  /**
308
308
  * Enables optimization of the build output. Including minification of scripts and styles,
309
309
  * tree-shaking, dead-code elimination, inlining of critical CSS and fonts inlining. For
@@ -169,7 +169,7 @@ export declare enum InlineStyleLanguage {
169
169
  /**
170
170
  * Translate the bundles in one or more locales.
171
171
  */
172
- export type Localize = string[] | boolean;
172
+ export type Localize = [string, ...string[]] | boolean;
173
173
  /**
174
174
  * Enables optimization of the build output. Including minification of scripts and styles,
175
175
  * tree-shaking and dead-code elimination. For more information, see
@@ -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 = '22.1.0-next.4';
13
+ const VERSION = '22.1.0';
14
14
  function hasCacheMetadata(value) {
15
15
  return (!!value &&
16
16
  typeof value === 'object' &&