@pauldvlp/vp-react-ts-nestjs 0.3.4 → 0.3.5
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/dist/index.js +5 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -217,7 +217,11 @@ async function runTemplateCLI(template) {
|
|
|
217
217
|
for (const step of [...creation.scripts].sort((a, b) => a.phase - b.phase)) {
|
|
218
218
|
for (const [program, ...commandArgs] of step.commands) {
|
|
219
219
|
if (!program) continue;
|
|
220
|
-
execFileSync(program, commandArgs, {
|
|
220
|
+
execFileSync(program, commandArgs, {
|
|
221
|
+
cwd: directory,
|
|
222
|
+
stdio: "inherit",
|
|
223
|
+
shell: process.platform === "win32"
|
|
224
|
+
});
|
|
221
225
|
}
|
|
222
226
|
}
|
|
223
227
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pauldvlp/vp-react-ts-nestjs",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5",
|
|
4
4
|
"description": "Vite+ monorepo template: a React web app + a NestJS api (conformed to the Vite+ toolchain) sharing Zod contracts.",
|
|
5
5
|
"author": "Paul Barahona <johanpaulbarahona@gmail.com> (https://github.com/pauldvlp/vp-templates)",
|
|
6
6
|
"license": "MIT",
|