@nx/rspack 22.1.0-beta.1 → 22.1.0-beta.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
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.1.0-beta.
|
|
4
|
+
"version": "22.1.0-beta.2",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -24,12 +24,12 @@
|
|
|
24
24
|
"generators": "./generators.json",
|
|
25
25
|
"executors": "./executors.json",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@nx/devkit": "22.1.0-beta.
|
|
28
|
-
"@nx/js": "22.1.0-beta.
|
|
29
|
-
"@nx/module-federation": "22.1.0-beta.
|
|
30
|
-
"@nx/web": "22.1.0-beta.
|
|
27
|
+
"@nx/devkit": "22.1.0-beta.2",
|
|
28
|
+
"@nx/js": "22.1.0-beta.2",
|
|
29
|
+
"@nx/module-federation": "22.1.0-beta.2",
|
|
30
|
+
"@nx/web": "22.1.0-beta.2",
|
|
31
31
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
32
|
-
"@rspack/core": "^1.5.
|
|
32
|
+
"@rspack/core": "^1.5.2",
|
|
33
33
|
"@rspack/dev-server": "^1.1.4",
|
|
34
34
|
"@rspack/plugin-react-refresh": "^1.0.0",
|
|
35
35
|
"autoprefixer": "^10.4.9",
|
|
@@ -57,8 +57,8 @@
|
|
|
57
57
|
"webpack-node-externals": "^3.0.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"nx": "22.1.0-beta.
|
|
61
|
-
"@nx/nest": "22.1.0-beta.
|
|
60
|
+
"nx": "22.1.0-beta.2",
|
|
61
|
+
"@nx/nest": "22.1.0-beta.2"
|
|
62
62
|
},
|
|
63
63
|
"peerDependencies": {
|
|
64
64
|
"@module-federation/enhanced": "^0.18.0",
|
|
@@ -439,8 +439,8 @@ async function handleUnsupportedUserProvidedTargetsErrors(userProvidedTargetName
|
|
|
439
439
|
devkit_1.logger.warn(`The custom ${target} target you provided (${userProvidedTargetName}) cannot be converted to use the @nx/rspack:${executor} executor.
|
|
440
440
|
However, we found the following ${target} target in your project that can be converted: ${validFoundTargetName}
|
|
441
441
|
|
|
442
|
-
Please note that converting a potentially non-compatible project to use Vite
|
|
443
|
-
your changes before converting a project to use Vite
|
|
442
|
+
Please note that converting a potentially non-compatible project to use Vite may result in unexpected behavior. Always commit
|
|
443
|
+
your changes before converting a project to use Vite, and test the converted project thoroughly before deploying it.
|
|
444
444
|
`);
|
|
445
445
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
446
446
|
const { Confirm } = require('enquirer');
|
|
@@ -455,8 +455,8 @@ async function handleUnsupportedUserProvidedTargetsErrors(userProvidedTargetName
|
|
|
455
455
|
Please try again, either by providing a different ${target} target or by not providing a target at all (Nx will
|
|
456
456
|
convert the first one it finds, most probably this one: ${validFoundTargetName})
|
|
457
457
|
|
|
458
|
-
Please note that converting a potentially non-compatible project to use Vite
|
|
459
|
-
your changes before converting a project to use Vite
|
|
458
|
+
Please note that converting a potentially non-compatible project to use Vite may result in unexpected behavior. Always commit
|
|
459
|
+
your changes before converting a project to use Vite, and test the converted project thoroughly before deploying it.
|
|
460
460
|
`);
|
|
461
461
|
}
|
|
462
462
|
}
|