@angular-devkit/build-angular 19.0.0 → 19.0.1
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": "19.0.
|
|
3
|
+
"version": "19.0.1",
|
|
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.1900.
|
|
11
|
-
"@angular-devkit/build-webpack": "0.1900.
|
|
12
|
-
"@angular-devkit/core": "19.0.
|
|
13
|
-
"@angular/build": "19.0.
|
|
10
|
+
"@angular-devkit/architect": "0.1900.1",
|
|
11
|
+
"@angular-devkit/build-webpack": "0.1900.1",
|
|
12
|
+
"@angular-devkit/core": "19.0.1",
|
|
13
|
+
"@angular/build": "19.0.1",
|
|
14
14
|
"@babel/core": "7.26.0",
|
|
15
15
|
"@babel/generator": "7.26.2",
|
|
16
16
|
"@babel/helper-annotate-as-pure": "7.25.9",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@babel/preset-env": "7.26.0",
|
|
22
22
|
"@babel/runtime": "7.26.0",
|
|
23
23
|
"@discoveryjs/json-ext": "0.6.3",
|
|
24
|
-
"@ngtools/webpack": "19.0.
|
|
24
|
+
"@ngtools/webpack": "19.0.1",
|
|
25
25
|
"@vitejs/plugin-basic-ssl": "1.1.0",
|
|
26
26
|
"ansi-colors": "4.1.3",
|
|
27
27
|
"autoprefixer": "10.4.20",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"@angular/localize": "^19.0.0",
|
|
71
71
|
"@angular/platform-server": "^19.0.0",
|
|
72
72
|
"@angular/service-worker": "^19.0.0",
|
|
73
|
-
"@angular/ssr": "^19.0.
|
|
73
|
+
"@angular/ssr": "^19.0.1",
|
|
74
74
|
"@web/test-runner": "^0.19.0",
|
|
75
75
|
"browser-sync": "^3.0.2",
|
|
76
76
|
"jest": "^29.5.0",
|
|
@@ -93,7 +93,7 @@ class AngularAssetsMiddleware {
|
|
|
93
93
|
};
|
|
94
94
|
}
|
|
95
95
|
}
|
|
96
|
-
function injectKarmaReporter(
|
|
96
|
+
function injectKarmaReporter(buildOptions, buildIterator, karmaConfig, subscriber) {
|
|
97
97
|
const reporterName = 'angular-progress-notifier';
|
|
98
98
|
class ProgressNotifierReporter {
|
|
99
99
|
emitter;
|
|
@@ -158,7 +158,7 @@ function execute(options, context, karmaOptions, transforms = {}) {
|
|
|
158
158
|
// If `--watch` is explicitly enabled or if we are keeping the Karma
|
|
159
159
|
// process running, we should hook Karma into the build.
|
|
160
160
|
if (buildIterator) {
|
|
161
|
-
injectKarmaReporter(
|
|
161
|
+
injectKarmaReporter(buildOptions, buildIterator, karmaConfig, subscriber);
|
|
162
162
|
}
|
|
163
163
|
// Complete the observable once the Karma server returns.
|
|
164
164
|
const karmaServer = new karma.Server(karmaConfig, (exitCode) => {
|
|
@@ -252,6 +252,7 @@ async function initializeApplication(options, context, karmaOptions, transforms
|
|
|
252
252
|
polyfills: normalizePolyfills(options.polyfills),
|
|
253
253
|
webWorkerTsConfig: options.webWorkerTsConfig,
|
|
254
254
|
watch: options.watch ?? !karmaOptions.singleRun,
|
|
255
|
+
stylePreprocessorOptions: options.stylePreprocessorOptions,
|
|
255
256
|
};
|
|
256
257
|
// Build tests with `application` builder, using test files as entry points.
|
|
257
258
|
const [buildOutput, buildIterator] = await first((0, private_1.buildApplicationInternal)(buildOptions, context), { cancel: !buildOptions.watch });
|
|
@@ -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.0.
|
|
13
|
+
const VERSION = '19.0.1';
|
|
14
14
|
function hasCacheMetadata(value) {
|
|
15
15
|
return (!!value &&
|
|
16
16
|
typeof value === 'object' &&
|