Skip to content

Commit

Permalink
chore: update change detection branch to 23.0 (#3541)
Browse files Browse the repository at this point in the history
  • Loading branch information
web-padawan committed Mar 11, 2022
1 parent 189177b commit dd2aa67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wtr-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const isLockfileChanged = () => {
* Get packages changed since master.
*/
const getChangedPackages = () => {
const output = execSync('./node_modules/.bin/lerna ls --since origin/master --json --loglevel silent');
const output = execSync('./node_modules/.bin/lerna ls --since origin/23.0 --json --loglevel silent');
return JSON.parse(output.toString()).map((project) => project.name.replace('@vaadin/', ''));
};

Expand Down

0 comments on commit dd2aa67

Please sign in to comment.