@nx/remix 18.0.5 → 18.0.7
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.0.
|
|
3
|
+
"version": "18.0.7",
|
|
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.0.
|
|
32
|
-
"@nx/js": "18.0.
|
|
33
|
-
"@nx/react": "18.0.
|
|
31
|
+
"@nx/devkit": "18.0.7",
|
|
32
|
+
"@nx/js": "18.0.7",
|
|
33
|
+
"@nx/react": "18.0.7",
|
|
34
34
|
"tslib": "^2.3.1",
|
|
35
35
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
36
|
-
"@nrwl/remix": "18.0.
|
|
36
|
+
"@nrwl/remix": "18.0.7"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {},
|
|
39
39
|
"publishConfig": {
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"exports": {
|
|
43
43
|
".": "./index.js",
|
|
44
44
|
"./plugin": "./plugin.js",
|
|
45
|
+
"./plugins/component-testing": "./plugins/component-testing/index.js",
|
|
45
46
|
"./package.json": "./package.json",
|
|
46
47
|
"./executors.json": "./executors.json",
|
|
47
48
|
"./generators.json": "./generators.json",
|
|
@@ -151,7 +151,11 @@ import { defineConfig } from 'cypress';
|
|
|
151
151
|
|
|
152
152
|
export default defineConfig({
|
|
153
153
|
e2e: {
|
|
154
|
-
...nxE2EPreset(__filename, {
|
|
154
|
+
...nxE2EPreset(__filename, {
|
|
155
|
+
cypressDir: 'src',
|
|
156
|
+
webServerCommands: { default: 'nx run test:serve:development' },
|
|
157
|
+
ciWebServerCommand: 'nx run test:serve-static',
|
|
158
|
+
}),
|
|
155
159
|
baseUrl: 'http://localhost:4200',
|
|
156
160
|
},
|
|
157
161
|
});
|
|
@@ -661,7 +665,11 @@ import { defineConfig } from 'cypress';
|
|
|
661
665
|
|
|
662
666
|
export default defineConfig({
|
|
663
667
|
e2e: {
|
|
664
|
-
...nxE2EPreset(__filename, {
|
|
668
|
+
...nxE2EPreset(__filename, {
|
|
669
|
+
cypressDir: 'src',
|
|
670
|
+
webServerCommands: { default: 'nx run test:serve:development' },
|
|
671
|
+
ciWebServerCommand: 'nx run test:serve-static',
|
|
672
|
+
}),
|
|
665
673
|
baseUrl: 'http://localhost:4200',
|
|
666
674
|
},
|
|
667
675
|
});
|
|
@@ -1027,7 +1035,11 @@ import { defineConfig } from 'cypress';
|
|
|
1027
1035
|
|
|
1028
1036
|
export default defineConfig({
|
|
1029
1037
|
e2e: {
|
|
1030
|
-
...nxE2EPreset(__filename, {
|
|
1038
|
+
...nxE2EPreset(__filename, {
|
|
1039
|
+
cypressDir: 'src',
|
|
1040
|
+
webServerCommands: { default: 'nx run test:serve:development' },
|
|
1041
|
+
ciWebServerCommand: 'nx run test:serve-static',
|
|
1042
|
+
}),
|
|
1031
1043
|
baseUrl: 'http://localhost:4200',
|
|
1032
1044
|
},
|
|
1033
1045
|
});
|