@lazarv/create-react-server 0.0.0-experimental-ff56eae-20250211-fae59462 → 0.0.0-experimental-0a7334f-20250212-60cd0df7
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/generator.mjs +4 -1
- package/package.json +2 -2
- package/steps/package.mjs +1 -1
package/generator.mjs
CHANGED
|
@@ -162,7 +162,10 @@ export async function generate(context) {
|
|
|
162
162
|
await new Promise((resolve, reject) => {
|
|
163
163
|
const child = spawn(
|
|
164
164
|
context.props.packageManager.name,
|
|
165
|
-
[
|
|
165
|
+
[
|
|
166
|
+
"install",
|
|
167
|
+
...(context.props.packageManager.ciInstallArgs?.split(" ") ?? []),
|
|
168
|
+
],
|
|
166
169
|
{
|
|
167
170
|
cwd: context.env.projectDir,
|
|
168
171
|
encoding: "utf8",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lazarv/create-react-server",
|
|
3
|
-
"version": "0.0.0-experimental-
|
|
3
|
+
"version": "0.0.0-experimental-0a7334f-20250212-60cd0df7",
|
|
4
4
|
"bin": {
|
|
5
5
|
"create-react-server": "index.mjs"
|
|
6
6
|
},
|
|
@@ -21,6 +21,6 @@
|
|
|
21
21
|
"picocolors": "^1.1.1",
|
|
22
22
|
"prettier": "^3.0.0",
|
|
23
23
|
"ts-morph": "^24.0.0",
|
|
24
|
-
"@lazarv/react-server": "0.0.0
|
|
24
|
+
"@lazarv/react-server": "0.0.0"
|
|
25
25
|
}
|
|
26
26
|
}
|