@nx/remix 19.0.4 → 19.0.5

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.0.4",
3
+ "version": "19.0.5",
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",
@@ -28,12 +28,12 @@
28
28
  "migrations": "./migrations.json"
29
29
  },
30
30
  "dependencies": {
31
- "@nx/devkit": "19.0.4",
32
- "@nx/js": "19.0.4",
33
- "@nx/react": "19.0.4",
31
+ "@nx/devkit": "19.0.5",
32
+ "@nx/js": "19.0.5",
33
+ "@nx/react": "19.0.5",
34
34
  "tslib": "^2.3.1",
35
35
  "@phenomnomnominal/tsquery": "~5.0.1",
36
- "@nrwl/remix": "19.0.4"
36
+ "@nrwl/remix": "19.0.5"
37
37
  },
38
38
  "peerDependencies": {},
39
39
  "publishConfig": {
@@ -199,7 +199,7 @@ async function remixApplicationGeneratorInternal(tree, _options) {
199
199
  return json;
200
200
  });
201
201
  if (options.unitTestRunner === 'jest') {
202
- tree.write('jest.preset.js', `import { nxPreset } from '@nx/jest/preset/jest-preset.js';
202
+ tree.write('jest.preset.js', `import { nxPreset } from '@nx/jest/preset.js';
203
203
  export default {...nxPreset};
204
204
  `);
205
205
  (0, testing_config_utils_1.updateJestTestMatch)(tree, 'jest.config.ts', '<rootDir>/tests/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}');