Skip to content

Commit

Permalink
yarn -> pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
delphiactual committed Dec 2, 2023
1 parent 2d4ef24 commit 1789c12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ registerWriteHook((fileName) => {
outputDirectories.includes(basename(dirname(fileName)))
) {
const t = process.hrtime();
const result = spawnSync(process.platform === 'win32' ? 'yarn.cmd' : 'yarn', ['build'], {
const result = spawnSync(process.platform === 'win32' ? 'pnpm.cmd' : 'pnpm', ['build'], {
cwd: projectRootDir,
stdio: 'inherit',
});
Expand Down

0 comments on commit 1789c12

Please sign in to comment.