@supa-magic/spm 0.2.0 → 0.2.1
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/bin/spm.js +3 -1
- package/package.json +1 -1
package/dist/bin/spm.js
CHANGED
|
@@ -404,8 +404,10 @@ const spawnClaude = (instructionsFilePath, stepper, providerDir) => new Promise(
|
|
|
404
404
|
"--allowedTools",
|
|
405
405
|
"Read,Write,Edit,Bash,Glob,Grep"
|
|
406
406
|
];
|
|
407
|
+
const isWindows = process.platform === "win32";
|
|
407
408
|
const child = spawn("claude", args, {
|
|
408
409
|
timeout: TIMEOUT_MS,
|
|
410
|
+
shell: isWindows,
|
|
409
411
|
stdio: ["ignore", "pipe", "pipe"]
|
|
410
412
|
});
|
|
411
413
|
let resultText = "";
|
|
@@ -896,7 +898,7 @@ const banner = (version2) => [
|
|
|
896
898
|
`${shade}▝▜${light}████▛▘ ${reset$1}${dim}v${version2} ✨ supa-magic${reset$1}`,
|
|
897
899
|
`${shade} ▘${light} ▝`
|
|
898
900
|
].join("\n");
|
|
899
|
-
const version = "0.2.
|
|
901
|
+
const version = "0.2.1";
|
|
900
902
|
const program = new Command();
|
|
901
903
|
const gray = "\x1B[90m";
|
|
902
904
|
const reset = "\x1B[0m";
|