@nx/webpack 22.6.0-rc.1 → 22.6.0-rc.2
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 +4 -4
- package/src/plugins/plugin.js +0 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/webpack",
|
|
3
|
-
"version": "22.6.0-rc.
|
|
3
|
+
"version": "22.6.0-rc.2",
|
|
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.6.0-rc.
|
|
68
|
-
"@nx/js": "22.6.0-rc.
|
|
67
|
+
"@nx/devkit": "22.6.0-rc.2",
|
|
68
|
+
"@nx/js": "22.6.0-rc.2"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"nx": "22.6.0-rc.
|
|
71
|
+
"nx": "22.6.0-rc.2"
|
|
72
72
|
},
|
|
73
73
|
"publishConfig": {
|
|
74
74
|
"access": "public"
|
package/src/plugins/plugin.js
CHANGED
|
@@ -169,19 +169,15 @@ async function createWebpackTargets(configFilePath, projectRoot, options, contex
|
|
|
169
169
|
if (isTsSolutionSetup) {
|
|
170
170
|
targets[options.buildTargetName].syncGenerators = [
|
|
171
171
|
'@nx/js:typescript-sync',
|
|
172
|
-
'@nx/js:deps-sync',
|
|
173
172
|
];
|
|
174
173
|
targets[options.serveTargetName].syncGenerators = [
|
|
175
174
|
'@nx/js:typescript-sync',
|
|
176
|
-
'@nx/js:deps-sync',
|
|
177
175
|
];
|
|
178
176
|
targets[options.previewTargetName].syncGenerators = [
|
|
179
177
|
'@nx/js:typescript-sync',
|
|
180
|
-
'@nx/js:deps-sync',
|
|
181
178
|
];
|
|
182
179
|
targets[options.serveStaticTargetName].syncGenerators = [
|
|
183
180
|
'@nx/js:typescript-sync',
|
|
184
|
-
'@nx/js:deps-sync',
|
|
185
181
|
];
|
|
186
182
|
}
|
|
187
183
|
(0, util_1.addBuildAndWatchDepsTargets)(context.workspaceRoot, projectRoot, targets, options, pmc);
|