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"