We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9f3bf1 commit b9a2e27Copy full SHA for b9a2e27
1 file changed
components/bin/pack
@@ -74,7 +74,7 @@ async function readJSON(dir) {
74
return new Promise((ok, fail) => {
75
const buffer = [];
76
const child = spawn(
77
- 'npx',
+ 'pnpm',
78
[
79
'webpack',
80
'--env', `dir=${path.relative(packDir, path.resolve(dir))}`,
@@ -84,7 +84,7 @@ async function readJSON(dir) {
84
],
85
{
86
cwd: packDir,
87
- shell: true,
+ shell: false,
88
}
89
);
90
child.stdout.on('data', (data) => buffer.push(String(data)));
0 commit comments