@nx/webpack 16.6.0-beta.4 → 16.6.0-beta.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/webpack",
|
|
3
|
-
"version": "16.6.0-beta.
|
|
3
|
+
"version": "16.6.0-beta.6",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The Nx Plugin for Webpack contains executors and generators that support building applications using Webpack.",
|
|
6
6
|
"repository": {
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"migrations": "./migrations.json"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@babel/core": "^7.
|
|
33
|
-
"@nrwl/webpack": "16.6.0-beta.
|
|
34
|
-
"@nx/devkit": "16.6.0-beta.
|
|
35
|
-
"@nx/js": "16.6.0-beta.
|
|
32
|
+
"@babel/core": "^7.22.9",
|
|
33
|
+
"@nrwl/webpack": "16.6.0-beta.6",
|
|
34
|
+
"@nx/devkit": "16.6.0-beta.6",
|
|
35
|
+
"@nx/js": "16.6.0-beta.6",
|
|
36
36
|
"autoprefixer": "^10.4.9",
|
|
37
37
|
"babel-loader": "^9.1.2",
|
|
38
38
|
"browserslist": "^4.21.4",
|
|
@@ -73,5 +73,5 @@
|
|
|
73
73
|
"access": "public"
|
|
74
74
|
},
|
|
75
75
|
"types": "./index.d.ts",
|
|
76
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "9aad21dbfb2b659e488b6626f59df58ab23c0032"
|
|
77
77
|
}
|
|
@@ -24,7 +24,7 @@ function devServerExecutor(serveOptions, context) {
|
|
|
24
24
|
throw new Error(`Cannot run dev-server without "index" option. Check the build options for ${context.projectName}.`);
|
|
25
25
|
}
|
|
26
26
|
if (!buildOptions.buildLibsFromSource) {
|
|
27
|
-
const { target, dependencies } = (0, buildable_libs_utils_1.
|
|
27
|
+
const { target, dependencies } = (0, buildable_libs_utils_1.calculateProjectBuildableDependencies)(context.taskGraph, context.projectGraph, context.root, context.projectName, 'build', // should be generalized
|
|
28
28
|
context.configurationName);
|
|
29
29
|
buildOptions.tsConfig = (0, buildable_libs_utils_1.createTmpTsConfig)(buildOptions.tsConfig, context.root, target.data.root, dependencies);
|
|
30
30
|
}
|
|
@@ -71,7 +71,7 @@ function webpackExecutor(_options, context) {
|
|
|
71
71
|
}
|
|
72
72
|
}
|
|
73
73
|
if (!options.buildLibsFromSource && context.targetName) {
|
|
74
|
-
const { dependencies } = (0, buildable_libs_utils_1.
|
|
74
|
+
const { dependencies } = (0, buildable_libs_utils_1.calculateProjectBuildableDependencies)(context.taskGraph, context.projectGraph, context.root, context.projectName, context.targetName, context.configurationName);
|
|
75
75
|
options.tsConfig = (0, buildable_libs_utils_1.createTmpTsConfig)(options.tsConfig, context.root, metadata.root, dependencies);
|
|
76
76
|
}
|
|
77
77
|
// Delete output path before bundling
|