@nx/webpack 20.1.0-beta.1 → 20.1.0-beta.3
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": "20.1.0-beta.
|
|
3
|
+
"version": "20.1.0-beta.3",
|
|
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": {
|
|
@@ -69,12 +69,12 @@
|
|
|
69
69
|
"webpack-dev-server": "^5.0.4",
|
|
70
70
|
"webpack-node-externals": "^3.0.0",
|
|
71
71
|
"webpack-subresource-integrity": "^5.1.0",
|
|
72
|
-
"@nx/devkit": "20.1.0-beta.
|
|
73
|
-
"@nx/js": "20.1.0-beta.
|
|
72
|
+
"@nx/devkit": "20.1.0-beta.3",
|
|
73
|
+
"@nx/js": "20.1.0-beta.3"
|
|
74
74
|
},
|
|
75
75
|
"publishConfig": {
|
|
76
76
|
"access": "public"
|
|
77
77
|
},
|
|
78
|
-
"
|
|
79
|
-
"
|
|
78
|
+
"types": "./index.d.ts",
|
|
79
|
+
"type": "commonjs"
|
|
80
80
|
}
|
|
@@ -13,7 +13,7 @@ const instantiate_script_plugins_1 = require("./instantiate-script-plugins");
|
|
|
13
13
|
const CssMinimizerPlugin = require("css-minimizer-webpack-plugin");
|
|
14
14
|
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
|
|
15
15
|
function applyWebConfig(options, config = {}, { useNormalizedEntry, } = {}) {
|
|
16
|
-
if (
|
|
16
|
+
if (global.NX_GRAPH_CREATION)
|
|
17
17
|
return;
|
|
18
18
|
// Defaults that was applied from executor schema previously.
|
|
19
19
|
options.runtimeChunk ??= true; // need this for HMR and other things to work
|