@nx/remix 21.0.0-beta.2 → 21.0.0-beta.4
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/remix",
|
|
3
|
-
"version": "21.0.0-beta.
|
|
3
|
+
"version": "21.0.0-beta.4",
|
|
4
4
|
"description": "The Remix plugin for Nx contains executors and generators for managing Remix applications and libraries within an Nx workspace. It provides:\n\n\n- Integration with libraries such as Vitest, Jest, Playwright, Cypress, and Storybook.\n\n- Generators for applications, libraries, routes, loaders, and more.\n\n- Library build support for publishing packages to npm or other registries.\n\n- Utilities for automatic workspace refactoring.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
"migrations": "./migrations.json"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@nx/devkit": "21.0.0-beta.
|
|
33
|
-
"@nx/js": "21.0.0-beta.
|
|
34
|
-
"@nx/react": "21.0.0-beta.
|
|
32
|
+
"@nx/devkit": "21.0.0-beta.4",
|
|
33
|
+
"@nx/js": "21.0.0-beta.4",
|
|
34
|
+
"@nx/react": "21.0.0-beta.4",
|
|
35
35
|
"tslib": "^2.3.1",
|
|
36
36
|
"@phenomnomnominal/tsquery": "~5.0.1"
|
|
37
37
|
},
|
|
@@ -182,7 +182,7 @@ export default defineConfig({
|
|
|
182
182
|
webServer: {
|
|
183
183
|
command: 'npx nx run test:serve-static',
|
|
184
184
|
url: 'http://localhost:3000',
|
|
185
|
-
reuseExistingServer:
|
|
185
|
+
reuseExistingServer: true,
|
|
186
186
|
cwd: workspaceRoot,
|
|
187
187
|
},
|
|
188
188
|
projects: [
|
|
@@ -712,7 +712,7 @@ export default defineConfig({
|
|
|
712
712
|
webServer: {
|
|
713
713
|
command: 'npx nx run test:serve-static',
|
|
714
714
|
url: 'http://localhost:3000',
|
|
715
|
-
reuseExistingServer:
|
|
715
|
+
reuseExistingServer: true,
|
|
716
716
|
cwd: workspaceRoot,
|
|
717
717
|
},
|
|
718
718
|
projects: [
|