mirror of
https://github.com/aljazceru/twentyone-world.github.io.git
synced 2025-12-18 19:34:20 +01:00
build: add script to update dependencies
This commit is contained in:
20
update-dependencies.sh
Executable file
20
update-dependencies.sh
Executable file
@@ -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"
|
||||
Reference in New Issue
Block a user