Skip to content

Commit

Permalink
fix: Dependency checker yarn argument order (#2051)
Browse files Browse the repository at this point in the history
  • Loading branch information
kriskowal authored Nov 25, 2020
1 parent fb40b32 commit c90fb61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/check-mismatched-dependencies.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

const { spawnSync } = require('child_process');
console.log(`running 'yarn workspaces info' to check for mismatched dependencies`);
const s = spawnSync('yarn', ['workspaces', 'info', '--silent'], {
const s = spawnSync('yarn', ['--silent', 'workspaces', 'info'], {
stdio: ['ignore', 'pipe', 'inherit']
});
if (s.status !== 0) {
Expand Down

0 comments on commit c90fb61

Please sign in to comment.