From b6a1c8d605ee1cab388119511f32787c47ff4518 Mon Sep 17 00:00:00 2001 From: Gigi Date: Sat, 15 Oct 2022 11:53:06 +0200 Subject: [PATCH] build: add script to update dependencies --- update-dependencies.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 update-dependencies.sh diff --git a/update-dependencies.sh b/update-dependencies.sh new file mode 100755 index 0000000..c3c2530 --- /dev/null +++ b/update-dependencies.sh @@ -0,0 +1,20 @@ +#!/bin/sh +bundle update --bundler +git add . +git commit -m "build: bundle update --bundler" + +npx npm-check-updates -u +git add . +git commit -m "build: ncu -u" + +npm install +git add . +git commit -m "build: npm install" + +npm audit fix +git add . +git commit -m "build: npm audit fix" + +bundle update +git add . +git commit -m "build: bundle update"