This is an automated email from the ASF dual-hosted git repository. djencks pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-website.git
commit 4c6baee7b01048b347fd64fe266a0609fb55f38f Author: David Jencks <djen...@apache.org> AuthorDate: Wed Nov 10 08:57:41 2021 -0800 add update:dependencies script to package.json --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index 37a9d82..8229bf7 100644 --- a/package.json +++ b/package.json @@ -16,6 +16,9 @@ "check:dependencies": "run-p check:cache check:dedupe", "check:cache": "yarn workspaces foreach install --immutable --immutable-cache --check-cache", "check:dedupe": "yarn workspaces foreach dedupe --check", + "update:dependencies": "run-s update:dedupe update:cache", + "update:cache": "yarn workspaces foreach install --check-cache", + "update:dedupe": "yarn workspaces foreach dedupe", "preview": "run-s preview:antora preview:hugo", "preview:antora": "antora --clean --fetch antora-playbook.yml", "preview:hugo": "hugo server -D",