You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by dj...@apache.org on 2021/11/13 03:34:10 UTC

[camel-website] 04/08: add update:dependencies script to package.json

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 <dj...@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",