@nx/remix 17.2.8 → 17.3.0-beta.2

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, Fast and Extensible Build System"></a></p>
62
+ width="100%" alt="Nx - Smart Monorepos · Fast CI"></a></p>
63
63
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/remix",
3
- "version": "17.2.8",
3
+ "version": "17.3.0-beta.2",
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": "17.2.8",
32
- "@nx/js": "17.2.8",
33
- "@nx/react": "17.2.8",
31
+ "@nx/devkit": "17.3.0-beta.2",
32
+ "@nx/js": "17.3.0-beta.2",
33
+ "@nx/react": "17.3.0-beta.2",
34
34
  "tslib": "^2.3.1",
35
35
  "@phenomnomnominal/tsquery": "~5.0.1",
36
- "@nrwl/remix": "17.2.8"
36
+ "@nrwl/remix": "17.3.0-beta.2"
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',
@@ -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');