Skip to content

Commit

Permalink
chore(repo): Fix npm run yalc:all (#2356)
Browse files Browse the repository at this point in the history
- this allows running `npm run yalc:all` work if `yalc` is not installed on the development machine
  • Loading branch information
thiskevinwang authored Dec 14, 2023
1 parent a6eb828 commit e3087b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"version": "changeset version && ./scripts/version-info.sh",
"version:canary": "./scripts/canary.mjs",
"version:snapshot": "./scripts/snapshot.mjs",
"yalc:all": "for d in packages/*/; do echo $d; cd $d; yalc push --replace --sig; cd '../../'; done"
"yalc:all": "for d in packages/*/; do echo $d; cd $d; npx yalc push --replace --sig; cd '../../'; done"
},
"devDependencies": {
"@actions/core": "^1.10.1",
Expand Down

0 comments on commit e3087b7

Please sign in to comment.