@nx/remix 19.1.0-beta.0 → 19.1.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/remix",
|
|
3
|
-
"version": "19.1.0-beta.
|
|
3
|
+
"version": "19.1.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, 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",
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
"Remix",
|
|
13
13
|
"React",
|
|
14
14
|
"Web",
|
|
15
|
-
"CLI"
|
|
15
|
+
"CLI",
|
|
16
|
+
"Front-end"
|
|
16
17
|
],
|
|
17
18
|
"author": "Victor Savkin",
|
|
18
19
|
"license": "MIT",
|
|
@@ -28,12 +29,12 @@
|
|
|
28
29
|
"migrations": "./migrations.json"
|
|
29
30
|
},
|
|
30
31
|
"dependencies": {
|
|
31
|
-
"@nx/devkit": "19.1.0-beta.
|
|
32
|
-
"@nx/js": "19.1.0-beta.
|
|
33
|
-
"@nx/react": "19.1.0-beta.
|
|
32
|
+
"@nx/devkit": "19.1.0-beta.2",
|
|
33
|
+
"@nx/js": "19.1.0-beta.2",
|
|
34
|
+
"@nx/react": "19.1.0-beta.2",
|
|
34
35
|
"tslib": "^2.3.1",
|
|
35
36
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
36
|
-
"@nrwl/remix": "19.1.0-beta.
|
|
37
|
+
"@nrwl/remix": "19.1.0-beta.2"
|
|
37
38
|
},
|
|
38
39
|
"peerDependencies": {},
|
|
39
40
|
"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
|
|
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}');
|