@nx/rsbuild 21.0.0-beta.1 → 21.0.0-beta.10
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 +3 -3
- package/src/plugins/plugin.js +2 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/rsbuild",
|
|
3
3
|
"description": "The Nx Plugin for Rsbuild contains an Nx plugin, executors and utilities that support building applications using Rsbuild.",
|
|
4
|
-
"version": "21.0.0-beta.
|
|
4
|
+
"version": "21.0.0-beta.10",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"executors": "./executors.json",
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"tslib": "^2.3.0",
|
|
33
|
-
"@nx/devkit": "21.0.0-beta.
|
|
34
|
-
"@nx/js": "21.0.0-beta.
|
|
33
|
+
"@nx/devkit": "21.0.0-beta.10",
|
|
34
|
+
"@nx/js": "21.0.0-beta.10",
|
|
35
35
|
"@rsbuild/core": "1.1.8",
|
|
36
36
|
"minimatch": "9.0.3",
|
|
37
37
|
"@phenomnomnominal/tsquery": "~5.0.1"
|
package/src/plugins/plugin.js
CHANGED
|
@@ -98,6 +98,7 @@ async function createRsbuildTargets(configFilePath, projectRoot, options, tsConf
|
|
|
98
98
|
},
|
|
99
99
|
};
|
|
100
100
|
targets[options.devTargetName] = {
|
|
101
|
+
continuous: true,
|
|
101
102
|
command: `rsbuild dev`,
|
|
102
103
|
options: {
|
|
103
104
|
cwd: projectRoot,
|
|
@@ -105,6 +106,7 @@ async function createRsbuildTargets(configFilePath, projectRoot, options, tsConf
|
|
|
105
106
|
},
|
|
106
107
|
};
|
|
107
108
|
targets[options.previewTargetName] = {
|
|
109
|
+
continuous: true,
|
|
108
110
|
command: `rsbuild preview`,
|
|
109
111
|
dependsOn: [`${options.buildTargetName}`, `^${options.buildTargetName}`],
|
|
110
112
|
options: {
|