@nx/remix 19.2.0-beta.2 → 19.2.0-beta.3
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": "19.2.0-beta.
|
|
3
|
+
"version": "19.2.0-beta.3",
|
|
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,12 +29,12 @@
|
|
|
29
29
|
"migrations": "./migrations.json"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@nx/devkit": "19.2.0-beta.
|
|
33
|
-
"@nx/js": "19.2.0-beta.
|
|
34
|
-
"@nx/react": "19.2.0-beta.
|
|
32
|
+
"@nx/devkit": "19.2.0-beta.3",
|
|
33
|
+
"@nx/js": "19.2.0-beta.3",
|
|
34
|
+
"@nx/react": "19.2.0-beta.3",
|
|
35
35
|
"tslib": "^2.3.1",
|
|
36
36
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
37
|
-
"@nrwl/remix": "19.2.0-beta.
|
|
37
|
+
"@nrwl/remix": "19.2.0-beta.3"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {},
|
|
40
40
|
"publishConfig": {
|
|
@@ -384,6 +384,7 @@ export default defineConfig({
|
|
|
384
384
|
|
|
385
385
|
test: {
|
|
386
386
|
setupFiles: ['test-setup.ts'],
|
|
387
|
+
watch: false,
|
|
387
388
|
globals: true,
|
|
388
389
|
cache: {
|
|
389
390
|
dir: '../node_modules/.vitest/test',
|
|
@@ -897,6 +898,7 @@ export default defineConfig({
|
|
|
897
898
|
|
|
898
899
|
test: {
|
|
899
900
|
setupFiles: ['test-setup.ts'],
|
|
901
|
+
watch: false,
|
|
900
902
|
globals: true,
|
|
901
903
|
cache: {
|
|
902
904
|
dir: '../../node_modules/.vitest/apps/test',
|
|
@@ -1217,6 +1219,7 @@ export default defineConfig({
|
|
|
1217
1219
|
|
|
1218
1220
|
test: {
|
|
1219
1221
|
setupFiles: ['test-setup.ts'],
|
|
1222
|
+
watch: false,
|
|
1220
1223
|
globals: true,
|
|
1221
1224
|
cache: {
|
|
1222
1225
|
dir: './node_modules/.vitest/test',
|
|
@@ -41,6 +41,7 @@ export default defineConfig({
|
|
|
41
41
|
|
|
42
42
|
test: {
|
|
43
43
|
setupFiles: ['./src/test-setup.ts'],
|
|
44
|
+
watch: false,
|
|
44
45
|
globals: true,
|
|
45
46
|
cache: { dir: '../node_modules/.vitest/test' },
|
|
46
47
|
environment: 'jsdom',
|
|
@@ -119,6 +120,7 @@ export default defineConfig({
|
|
|
119
120
|
|
|
120
121
|
test: {
|
|
121
122
|
setupFiles: ['./src/test-setup.ts'],
|
|
123
|
+
watch: false,
|
|
122
124
|
globals: true,
|
|
123
125
|
cache: { dir: '../../node_modules/.vitest/libs/test' },
|
|
124
126
|
environment: 'jsdom',
|