@nx/rsbuild 0.0.0-pr-3-e51e28c → 0.0.0-pr-30418-4e2b721

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/rsbuild",
3
3
  "description": "The Nx Plugin for Rsbuild contains an Nx plugin, executors and utilities that support building applications using Rsbuild.",
4
- "version": "0.0.0-pr-3-e51e28c",
4
+ "version": "0.0.0-pr-30418-4e2b721",
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": "0.0.0-pr-3-e51e28c",
34
- "@nx/js": "0.0.0-pr-3-e51e28c",
33
+ "@nx/devkit": "0.0.0-pr-30418-4e2b721",
34
+ "@nx/js": "0.0.0-pr-30418-4e2b721",
35
35
  "@rsbuild/core": "1.1.8",
36
36
  "minimatch": "9.0.3",
37
37
  "@phenomnomnominal/tsquery": "~5.0.1"
@@ -98,7 +98,6 @@ async function createRsbuildTargets(configFilePath, projectRoot, options, tsConf
98
98
  },
99
99
  };
100
100
  targets[options.devTargetName] = {
101
- continuous: true,
102
101
  command: `rsbuild dev`,
103
102
  options: {
104
103
  cwd: projectRoot,
@@ -106,7 +105,6 @@ async function createRsbuildTargets(configFilePath, projectRoot, options, tsConf
106
105
  },
107
106
  };
108
107
  targets[options.previewTargetName] = {
109
- continuous: true,
110
108
  command: `rsbuild preview`,
111
109
  dependsOn: [`${options.buildTargetName}`, `^${options.buildTargetName}`],
112
110
  options: {