Skip to content

Commit bfb783b

Browse files
authored
fix(scripts): drop --no-since from lerna ls (#2357)
1 parent 2c76f0d commit bfb783b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/sort-workspaces.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ async function main() {
2222
));
2323

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

2828
await fs.writeFile(
@@ -36,4 +36,4 @@ main().catch((err) =>
3636
process.nextTick(() => {
3737
throw err;
3838
})
39-
);
39+
);

0 commit comments

Comments
 (0)