Skip to content

Commit

Permalink
chore: Improve package update
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed Aug 21, 2023
1 parent e2d54f5 commit 9fc2378
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions action/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
"**"
]
},
"scripts": {
"update-packages": "yarn upgrade && npx package-json-dependency-updater -u && yarn"
},
"dependencies": {
"@cspell/cspell-bundled-dicts": "^7.0.0"
}
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
"smoke-test": "env-cmd -f ./fixtures/pull_request.json node ./action/lib/main_root.js",
"test": "yarn workspace action-src test",
"coverage": "yarn workspace action-src coverage",
"update-packages": "yarn upgrade && npx package-json-dependency-updater -u && yarn"
"update-packages": "yarn update:action && yarn update:root",
"update:action": "yarn workspace action update-packages",
"update:root": "yarn upgrade && npx package-json-dependency-updater -u && yarn"
},
"workspaces": {
"packages": [
Expand Down

0 comments on commit 9fc2378

Please sign in to comment.