@nx/rspack 22.6.0-rc.1 → 22.6.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 +7 -7
- package/src/plugins/plugin.js +0 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/rspack",
|
|
3
3
|
"description": "The Nx Plugin for Rspack contains executors and generators that support building applications using Rspack.",
|
|
4
|
-
"version": "22.6.0
|
|
4
|
+
"version": "22.6.0",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
"generators": "./generators.json",
|
|
25
25
|
"executors": "./executors.json",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@nx/devkit": "22.6.0
|
|
28
|
-
"@nx/js": "22.6.0
|
|
29
|
-
"@nx/module-federation": "22.6.0
|
|
30
|
-
"@nx/web": "22.6.0
|
|
27
|
+
"@nx/devkit": "22.6.0",
|
|
28
|
+
"@nx/js": "22.6.0",
|
|
29
|
+
"@nx/module-federation": "22.6.0",
|
|
30
|
+
"@nx/web": "22.6.0",
|
|
31
31
|
"@phenomnomnominal/tsquery": "~6.1.4",
|
|
32
32
|
"@rspack/core": "1.6.8",
|
|
33
33
|
"@rspack/dev-server": "^1.1.4",
|
|
@@ -57,8 +57,8 @@
|
|
|
57
57
|
"webpack-node-externals": "^3.0.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"nx": "22.6.0
|
|
61
|
-
"@nx/nest": "22.6.0
|
|
60
|
+
"nx": "22.6.0",
|
|
61
|
+
"@nx/nest": "22.6.0"
|
|
62
62
|
},
|
|
63
63
|
"peerDependencies": {
|
|
64
64
|
"@module-federation/enhanced": "^2.1.0",
|
package/src/plugins/plugin.js
CHANGED
|
@@ -164,19 +164,15 @@ async function createRspackTargets(configFilePath, projectRoot, options, context
|
|
|
164
164
|
if (isTsSolutionSetup) {
|
|
165
165
|
targets[options.buildTargetName].syncGenerators = [
|
|
166
166
|
'@nx/js:typescript-sync',
|
|
167
|
-
'@nx/js:deps-sync',
|
|
168
167
|
];
|
|
169
168
|
targets[options.serveTargetName].syncGenerators = [
|
|
170
169
|
'@nx/js:typescript-sync',
|
|
171
|
-
'@nx/js:deps-sync',
|
|
172
170
|
];
|
|
173
171
|
targets[options.previewTargetName].syncGenerators = [
|
|
174
172
|
'@nx/js:typescript-sync',
|
|
175
|
-
'@nx/js:deps-sync',
|
|
176
173
|
];
|
|
177
174
|
targets[options.serveStaticTargetName].syncGenerators = [
|
|
178
175
|
'@nx/js:typescript-sync',
|
|
179
|
-
'@nx/js:deps-sync',
|
|
180
176
|
];
|
|
181
177
|
}
|
|
182
178
|
(0, util_1.addBuildAndWatchDepsTargets)(context.workspaceRoot, projectRoot, targets, options, pmc);
|