Skip to content

Commit

Permalink
fix(scripts): drop --no-since from lerna ls (#2357)
Browse files Browse the repository at this point in the history
  • Loading branch information
addaleax authored Feb 4, 2025
1 parent 2c76f0d commit bfb783b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/sort-workspaces.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ async function main() {
));

// should use the scopes in lerna.json
const { stdout } = await exec('npx -y lerna ls --all --no-since --toposort --json');
const { stdout } = await exec('npx -y lerna ls --all --toposort --json');
packageJSON.workspaces = JSON.parse(stdout).map(({ location }) => path.relative(monorepoRoot, location));

await fs.writeFile(
Expand All @@ -36,4 +36,4 @@ main().catch((err) =>
process.nextTick(() => {
throw err;
})
);
);

0 comments on commit bfb783b

Please sign in to comment.