@nx/remix 18.2.0-beta.1 → 18.2.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": "18.2.0-beta.
|
|
3
|
+
"version": "18.2.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": "18.2.0-beta.
|
|
32
|
-
"@nx/js": "18.2.0-beta.
|
|
33
|
-
"@nx/react": "18.2.0-beta.
|
|
31
|
+
"@nx/devkit": "18.2.0-beta.2",
|
|
32
|
+
"@nx/js": "18.2.0-beta.2",
|
|
33
|
+
"@nx/react": "18.2.0-beta.2",
|
|
34
34
|
"tslib": "^2.3.1",
|
|
35
35
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
36
|
-
"@nrwl/remix": "18.2.0-beta.
|
|
36
|
+
"@nrwl/remix": "18.2.0-beta.2"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {},
|
|
39
39
|
"publishConfig": {
|
|
@@ -154,7 +154,6 @@ export default defineConfig({
|
|
|
154
154
|
...nxE2EPreset(__filename, {
|
|
155
155
|
cypressDir: 'src',
|
|
156
156
|
webServerCommands: { default: 'nx run test:serve:development' },
|
|
157
|
-
ciWebServerCommand: 'nx run test:serve-static',
|
|
158
157
|
}),
|
|
159
158
|
baseUrl: 'http://localhost:4200',
|
|
160
159
|
},
|
|
@@ -668,7 +667,6 @@ export default defineConfig({
|
|
|
668
667
|
...nxE2EPreset(__filename, {
|
|
669
668
|
cypressDir: 'src',
|
|
670
669
|
webServerCommands: { default: 'nx run test:serve:development' },
|
|
671
|
-
ciWebServerCommand: 'nx run test:serve-static',
|
|
672
670
|
}),
|
|
673
671
|
baseUrl: 'http://localhost:4200',
|
|
674
672
|
},
|
|
@@ -1038,7 +1036,6 @@ export default defineConfig({
|
|
|
1038
1036
|
...nxE2EPreset(__filename, {
|
|
1039
1037
|
cypressDir: 'src',
|
|
1040
1038
|
webServerCommands: { default: 'nx run test:serve:development' },
|
|
1041
|
-
ciWebServerCommand: 'nx run test:serve-static',
|
|
1042
1039
|
}),
|
|
1043
1040
|
baseUrl: 'http://localhost:4200',
|
|
1044
1041
|
},
|
|
@@ -6,7 +6,9 @@ const versions_1 = require("../../../utils/versions");
|
|
|
6
6
|
async function addE2E(tree, options) {
|
|
7
7
|
if (options.e2eTestRunner === 'cypress') {
|
|
8
8
|
const { configurationGenerator } = (0, devkit_1.ensurePackage)('@nx/cypress', (0, versions_1.getPackageVersion)(tree, 'nx'));
|
|
9
|
-
|
|
9
|
+
// TODO(colum): Remix needs a different approach to serve-static
|
|
10
|
+
// Likely via remix start
|
|
11
|
+
// addFileServerTarget(tree, options, 'serve-static');
|
|
10
12
|
(0, devkit_1.addProjectConfiguration)(tree, options.e2eProjectName, {
|
|
11
13
|
projectType: 'application',
|
|
12
14
|
root: options.e2eProjectRoot,
|