@nx/remix 17.2.5 → 17.2.8
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/README.md
CHANGED
|
@@ -59,5 +59,5 @@ npx nx@latest init
|
|
|
59
59
|
- [Blog Posts About Nx](https://blog.nrwl.io/nx/home)
|
|
60
60
|
|
|
61
61
|
<p style="text-align: center;"><a href="https://nx.dev/#learning-materials" target="_blank" rel="noreferrer"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-courses-and-videos.svg"
|
|
62
|
-
width="100%" alt="Nx - Smart
|
|
62
|
+
width="100%" alt="Nx - Smart, Fast and Extensible Build System"></a></p>
|
|
63
63
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/remix",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "17.2.8",
|
|
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, 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",
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
"migrations": "./migrations.json"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@nx/devkit": "
|
|
32
|
-
"@nx/js": "
|
|
33
|
-
"@nx/react": "
|
|
31
|
+
"@nx/devkit": "17.2.8",
|
|
32
|
+
"@nx/js": "17.2.8",
|
|
33
|
+
"@nx/react": "17.2.8",
|
|
34
34
|
"tslib": "^2.3.1",
|
|
35
35
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
36
|
-
"@nrwl/remix": "
|
|
36
|
+
"@nrwl/remix": "17.2.8"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {},
|
|
39
39
|
"publishConfig": {
|
|
@@ -348,7 +348,7 @@ export default defineConfig({
|
|
|
348
348
|
// },
|
|
349
349
|
|
|
350
350
|
test: {
|
|
351
|
-
setupFiles: ['test-setup.ts'],
|
|
351
|
+
setupFiles: ['./test-setup.ts'],
|
|
352
352
|
globals: true,
|
|
353
353
|
cache: {
|
|
354
354
|
dir: '../node_modules/.vitest',
|
|
@@ -810,7 +810,7 @@ export default defineConfig({
|
|
|
810
810
|
// },
|
|
811
811
|
|
|
812
812
|
test: {
|
|
813
|
-
setupFiles: ['test-setup.ts'],
|
|
813
|
+
setupFiles: ['./test-setup.ts'],
|
|
814
814
|
globals: true,
|
|
815
815
|
cache: {
|
|
816
816
|
dir: '../../node_modules/.vitest',
|
|
@@ -1118,7 +1118,7 @@ export default defineConfig({
|
|
|
1118
1118
|
// },
|
|
1119
1119
|
|
|
1120
1120
|
test: {
|
|
1121
|
-
setupFiles: ['test-setup.ts'],
|
|
1121
|
+
setupFiles: ['./test-setup.ts'],
|
|
1122
1122
|
globals: true,
|
|
1123
1123
|
cache: {
|
|
1124
1124
|
dir: './node_modules/.vitest',
|
|
@@ -1128,7 +1128,7 @@ export default defineConfig({
|
|
|
1128
1128
|
|
|
1129
1129
|
reporters: ['default'],
|
|
1130
1130
|
coverage: {
|
|
1131
|
-
reportsDirectory: './coverage
|
|
1131
|
+
reportsDirectory: './coverage/test',
|
|
1132
1132
|
provider: 'v8',
|
|
1133
1133
|
},
|
|
1134
1134
|
},
|
|
@@ -14,7 +14,7 @@ function updateUnitTestConfig(tree, pathToRoot, unitTestRunner) {
|
|
|
14
14
|
const pathToViteConfig = (0, devkit_1.joinPathFragments)(pathToRoot, 'vite.config.ts');
|
|
15
15
|
(0, testing_config_utils_1.updateViteTestIncludes)(tree, pathToViteConfig, './app/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}');
|
|
16
16
|
(0, testing_config_utils_1.updateViteTestIncludes)(tree, pathToViteConfig, './tests/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}');
|
|
17
|
-
(0, testing_config_utils_1.updateViteTestSetup)(tree, pathToViteConfig, 'test-setup.ts');
|
|
17
|
+
(0, testing_config_utils_1.updateViteTestSetup)(tree, pathToViteConfig, './test-setup.ts');
|
|
18
18
|
}
|
|
19
19
|
else if (unitTestRunner === 'jest') {
|
|
20
20
|
const pathToJestConfig = (0, devkit_1.joinPathFragments)(pathToRoot, 'jest.config.ts');
|