@nx/remix 19.4.0-rc.1 → 19.4.1
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.4.
|
|
3
|
+
"version": "19.4.1",
|
|
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.4.
|
|
33
|
-
"@nx/js": "19.4.
|
|
34
|
-
"@nx/react": "19.4.
|
|
32
|
+
"@nx/devkit": "19.4.1",
|
|
33
|
+
"@nx/js": "19.4.1",
|
|
34
|
+
"@nx/react": "19.4.1",
|
|
35
35
|
"tslib": "^2.3.1",
|
|
36
36
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
37
|
-
"@nrwl/remix": "19.4.
|
|
37
|
+
"@nrwl/remix": "19.4.1"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {},
|
|
40
40
|
"publishConfig": {
|
|
@@ -386,9 +386,6 @@ export default defineConfig({
|
|
|
386
386
|
setupFiles: ['test-setup.ts'],
|
|
387
387
|
watch: false,
|
|
388
388
|
globals: true,
|
|
389
|
-
cache: {
|
|
390
|
-
dir: '../node_modules/.vitest/test',
|
|
391
|
-
},
|
|
392
389
|
environment: 'jsdom',
|
|
393
390
|
include: ['./tests/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
|
|
394
391
|
|
|
@@ -900,9 +897,6 @@ export default defineConfig({
|
|
|
900
897
|
setupFiles: ['test-setup.ts'],
|
|
901
898
|
watch: false,
|
|
902
899
|
globals: true,
|
|
903
|
-
cache: {
|
|
904
|
-
dir: '../../node_modules/.vitest/apps/test',
|
|
905
|
-
},
|
|
906
900
|
environment: 'jsdom',
|
|
907
901
|
include: ['./tests/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
|
|
908
902
|
|
|
@@ -1221,9 +1215,6 @@ export default defineConfig({
|
|
|
1221
1215
|
setupFiles: ['test-setup.ts'],
|
|
1222
1216
|
watch: false,
|
|
1223
1217
|
globals: true,
|
|
1224
|
-
cache: {
|
|
1225
|
-
dir: './node_modules/.vitest/test',
|
|
1226
|
-
},
|
|
1227
1218
|
environment: 'jsdom',
|
|
1228
1219
|
include: ['./tests/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
|
|
1229
1220
|
|