Skip to content

Commit

Permalink
fix(js-toolkit): use yarn instead of npm
Browse files Browse the repository at this point in the history
  • Loading branch information
bryceosterhaus committed Jun 7, 2024
1 parent e658bfb commit d370d20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/js-toolkit/scripts/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const spawn = require('./util/spawn');

function compile(dir) {
try {
spawn('npx', ['tsc'], {cwd: dir});
spawn('yarn', ['tsc'], {cwd: dir});
}
catch (error) {
throw new Error(
Expand Down

0 comments on commit d370d20

Please sign in to comment.