@angular-devkit/build-angular 14.2.6 → 14.2.8
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,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular-devkit/build-angular",
|
|
3
|
-
"version": "14.2.
|
|
3
|
+
"version": "14.2.8",
|
|
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.2.0",
|
|
10
|
-
"@angular-devkit/architect": "0.1402.
|
|
11
|
-
"@angular-devkit/build-webpack": "0.1402.
|
|
12
|
-
"@angular-devkit/core": "14.2.
|
|
10
|
+
"@angular-devkit/architect": "0.1402.8",
|
|
11
|
+
"@angular-devkit/build-webpack": "0.1402.8",
|
|
12
|
+
"@angular-devkit/core": "14.2.8",
|
|
13
13
|
"@babel/core": "7.18.10",
|
|
14
14
|
"@babel/generator": "7.18.12",
|
|
15
15
|
"@babel/helper-annotate-as-pure": "7.18.6",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"@babel/runtime": "7.18.9",
|
|
21
21
|
"@babel/template": "7.18.10",
|
|
22
22
|
"@discoveryjs/json-ext": "0.5.7",
|
|
23
|
-
"@ngtools/webpack": "14.2.
|
|
23
|
+
"@ngtools/webpack": "14.2.8",
|
|
24
24
|
"ansi-colors": "4.1.3",
|
|
25
25
|
"babel-loader": "8.2.5",
|
|
26
26
|
"babel-plugin-istanbul": "6.1.1",
|
|
@@ -114,6 +114,12 @@ function serveWebpackBrowser(options, context, transforms = {}) {
|
|
|
114
114
|
const metadata = await context.getProjectMetadata(projectName);
|
|
115
115
|
const cacheOptions = (0, normalize_cache_1.normalizeCacheOptions)(metadata, context.workspaceRoot);
|
|
116
116
|
const browserName = await context.getBuilderNameForTarget(browserTarget);
|
|
117
|
+
// Issue a warning that the dev-server does not currently support the experimental esbuild-
|
|
118
|
+
// based builder and will use Webpack.
|
|
119
|
+
if (browserName === '@angular-devkit/build-angular:browser-esbuild') {
|
|
120
|
+
logger.warn('WARNING: The experimental esbuild-based builder is not currently supported ' +
|
|
121
|
+
'by the dev-server. The stable Webpack-based builder will be used instead.');
|
|
122
|
+
}
|
|
117
123
|
const browserOptions = (await context.validateOptions({
|
|
118
124
|
...rawBrowserOptions,
|
|
119
125
|
watch: options.watch,
|