@nx/remix 22.6.0-rc.1 → 22.6.0
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 +7 -7
- package/src/plugins/plugin.js +4 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/remix",
|
|
3
|
-
"version": "22.6.0
|
|
3
|
+
"version": "22.6.0",
|
|
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,16 +29,16 @@
|
|
|
29
29
|
"migrations": "./migrations.json"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@nx/devkit": "22.6.0
|
|
33
|
-
"@nx/js": "22.6.0
|
|
34
|
-
"@nx/react": "22.6.0
|
|
35
|
-
"@nx/workspace": "22.6.0
|
|
32
|
+
"@nx/devkit": "22.6.0",
|
|
33
|
+
"@nx/js": "22.6.0",
|
|
34
|
+
"@nx/react": "22.6.0",
|
|
35
|
+
"@nx/workspace": "22.6.0",
|
|
36
36
|
"tslib": "^2.3.0",
|
|
37
37
|
"@phenomnomnominal/tsquery": "~6.1.4"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"nx": "22.6.0
|
|
41
|
-
"@nx/vitest": "22.6.0
|
|
40
|
+
"nx": "22.6.0",
|
|
41
|
+
"@nx/vitest": "22.6.0"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"@remix-run/dev": "^2.17.3"
|
package/src/plugins/plugin.js
CHANGED
|
@@ -113,7 +113,7 @@ function buildTarget(buildTargetName, projectRoot, buildDirectory, assetsBuildDi
|
|
|
113
113
|
options: { cwd: projectRoot },
|
|
114
114
|
};
|
|
115
115
|
if (isUsingTsSolutionSetup) {
|
|
116
|
-
buildTarget.syncGenerators = ['@nx/js:typescript-sync'
|
|
116
|
+
buildTarget.syncGenerators = ['@nx/js:typescript-sync'];
|
|
117
117
|
}
|
|
118
118
|
return buildTarget;
|
|
119
119
|
}
|
|
@@ -126,7 +126,7 @@ function devTarget(serverBuildPath, projectRoot, remixCompiler, isUsingTsSolutio
|
|
|
126
126
|
options: { cwd: projectRoot },
|
|
127
127
|
};
|
|
128
128
|
if (isUsingTsSolutionSetup) {
|
|
129
|
-
devTarget.syncGenerators = ['@nx/js:typescript-sync'
|
|
129
|
+
devTarget.syncGenerators = ['@nx/js:typescript-sync'];
|
|
130
130
|
}
|
|
131
131
|
return devTarget;
|
|
132
132
|
}
|
|
@@ -146,7 +146,7 @@ function startTarget(projectRoot, serverBuildPath, buildTargetName, remixCompile
|
|
|
146
146
|
},
|
|
147
147
|
};
|
|
148
148
|
if (isUsingTsSolutionSetup) {
|
|
149
|
-
startTarget.syncGenerators = ['@nx/js:typescript-sync'
|
|
149
|
+
startTarget.syncGenerators = ['@nx/js:typescript-sync'];
|
|
150
150
|
}
|
|
151
151
|
return startTarget;
|
|
152
152
|
}
|
|
@@ -181,10 +181,7 @@ function typecheckTarget(typecheckTargetName, projectRoot, namedInputs, siblingF
|
|
|
181
181
|
};
|
|
182
182
|
if (isUsingTsSolutionSetup) {
|
|
183
183
|
typecheckTarget.dependsOn = [`^${typecheckTargetName}`];
|
|
184
|
-
typecheckTarget.syncGenerators = [
|
|
185
|
-
'@nx/js:typescript-sync',
|
|
186
|
-
'@nx/js:deps-sync',
|
|
187
|
-
];
|
|
184
|
+
typecheckTarget.syncGenerators = ['@nx/js:typescript-sync'];
|
|
188
185
|
}
|
|
189
186
|
return typecheckTarget;
|
|
190
187
|
}
|