@nx/remix 20.3.0 → 20.3.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/LICENSE
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/remix",
|
|
3
|
-
"version": "20.3.
|
|
3
|
+
"version": "20.3.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",
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
"migrations": "./migrations.json"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@nx/devkit": "20.3.
|
|
33
|
-
"@nx/js": "20.3.
|
|
34
|
-
"@nx/react": "20.3.
|
|
32
|
+
"@nx/devkit": "20.3.2",
|
|
33
|
+
"@nx/js": "20.3.2",
|
|
34
|
+
"@nx/react": "20.3.2",
|
|
35
35
|
"tslib": "^2.3.1",
|
|
36
36
|
"@phenomnomnominal/tsquery": "~5.0.1"
|
|
37
37
|
},
|
|
@@ -188,9 +188,6 @@ export default {...nxPreset};
|
|
|
188
188
|
}
|
|
189
189
|
tasks.push(await (0, lib_1.addE2E)(tree, options));
|
|
190
190
|
(0, lib_1.addViteTempFilesToGitIgnore)(tree);
|
|
191
|
-
if (!options.skipFormat) {
|
|
192
|
-
await (0, devkit_1.formatFiles)(tree);
|
|
193
|
-
}
|
|
194
191
|
(0, ts_solution_setup_1.updateTsconfigFiles)(tree, options.projectRoot, 'tsconfig.app.json', {
|
|
195
192
|
jsx: 'react-jsx',
|
|
196
193
|
module: 'esnext',
|
|
@@ -203,6 +200,9 @@ export default {...nxPreset};
|
|
|
203
200
|
if (options.useTsSolution) {
|
|
204
201
|
(0, ts_solution_setup_1.addProjectToTsSolutionWorkspace)(tree, options.projectRoot);
|
|
205
202
|
}
|
|
203
|
+
if (!options.skipFormat) {
|
|
204
|
+
await (0, devkit_1.formatFiles)(tree);
|
|
205
|
+
}
|
|
206
206
|
tasks.push(() => {
|
|
207
207
|
(0, log_show_project_command_1.logShowProjectCommand)(options.projectName);
|
|
208
208
|
});
|