@nx/webpack 22.1.0-rc.5 → 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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/webpack",
|
|
3
|
-
"version": "22.1.0
|
|
3
|
+
"version": "22.1.0",
|
|
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": {
|
|
@@ -64,11 +64,11 @@
|
|
|
64
64
|
"webpack-dev-server": "^5.2.1",
|
|
65
65
|
"webpack-node-externals": "^3.0.0",
|
|
66
66
|
"webpack-subresource-integrity": "^5.1.0",
|
|
67
|
-
"@nx/devkit": "22.1.0
|
|
68
|
-
"@nx/js": "22.1.0
|
|
67
|
+
"@nx/devkit": "22.1.0",
|
|
68
|
+
"@nx/js": "22.1.0"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"nx": "22.1.0
|
|
71
|
+
"nx": "22.1.0"
|
|
72
72
|
},
|
|
73
73
|
"publishConfig": {
|
|
74
74
|
"access": "public"
|
|
@@ -79,7 +79,7 @@ export interface NxAppWebpackPluginOptions {
|
|
|
79
79
|
* Define external packages that will not be bundled.
|
|
80
80
|
* Use `all` to exclude all 3rd party packages, and `none` to bundle all packages.
|
|
81
81
|
* Use an array to exclude specific packages from the bundle.
|
|
82
|
-
* Default is `
|
|
82
|
+
* Default is `all`.
|
|
83
83
|
*/
|
|
84
84
|
externalDependencies?: 'all' | 'none' | string[];
|
|
85
85
|
/**
|