@pauldvlp/vp-react-ts-shadcn 0.6.4 → 0.6.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.
Files changed (2) hide show
  1. package/dist/index.js +5 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -302,7 +302,11 @@ async function runTemplateCLI(template) {
302
302
  for (const step of [...creation.scripts].sort((a, b) => a.phase - b.phase)) {
303
303
  for (const [program, ...commandArgs] of step.commands) {
304
304
  if (!program) continue;
305
- execFileSync(program, commandArgs, { cwd: directory, stdio: "inherit" });
305
+ execFileSync(program, commandArgs, {
306
+ cwd: directory,
307
+ stdio: "inherit",
308
+ shell: process.platform === "win32"
309
+ });
306
310
  }
307
311
  }
308
312
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pauldvlp/vp-react-ts-shadcn",
3
- "version": "0.6.4",
3
+ "version": "0.6.5",
4
4
  "description": "Vite+ monorepo template: one frontend app (website) + a shared shadcn UI package, themeable via shadcn presets.",
5
5
  "author": "Paul Barahona <johanpaulbarahona@gmail.com> (https://github.com/pauldvlp/vp-templates)",
6
6
  "license": "MIT",