Skip to content

Commit

Permalink
ci: revert pnpm on validate cli
Browse files Browse the repository at this point in the history
  • Loading branch information
shairez committed Jul 26, 2024
1 parent 98da80e commit 329dbff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/validate-cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ async function validateStarter(
accessSync(tsconfigPath);

const { execa } = await import('execa');
console.log(`${emoji} ${starterId}: pnpm install`);
await execa('pnpm', ['install'], { cwd: appDir, stdout: 'inherit' });
console.log(`${emoji} ${starterId}: npm install`);
await execa('npm', ['install'], { cwd: appDir, stdout: 'inherit' });

// console.log(`${emoji} ${projectName}: copy @builder.io/qwik distribution`);
// const qwikNodeModule = join(appDir, 'node_modules', '@builder.io', 'qwik');
Expand Down

0 comments on commit 329dbff

Please sign in to comment.