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