Skip to content

Commit 8b5d4fa

Browse files
committed
fix:node spawning issue
1 parent 4c04edb commit 8b5d4fa

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

src/cli/framework/build.ts

+10-11
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,19 @@ export function buildFramework() {
2727
process.exit(1);
2828
}
2929

30-
const tsc = spawnSync(tscPath, [], {
31-
stdio: "inherit",
32-
shell: true,
33-
env: {
34-
...process.env,
35-
PATH: process.env.PATH
36-
}
37-
});
30+
const tsc = spawnSync(isWindows ? tscPath : "node",
31+
isWindows ? [] : [tscPath],
32+
{
33+
stdio: "inherit",
34+
env: {
35+
...process.env,
36+
ELECTRON_RUN_AS_NODE: "1"
37+
}
38+
});
3839

3940
if (tsc.error) {
4041
console.error("TypeScript compilation error:", tsc.error);
41-
}
42-
if (tsc.stderr) {
43-
console.error("TypeScript stderr:", tsc.stderr.toString());
42+
process.exit(1);
4443
}
4544

4645
if (tsc.status !== 0) {

0 commit comments

Comments
 (0)