mirror of
https://github.com/aljazceru/twentyone-world.github.io.git
synced 2025-12-18 21:14:23 +01:00
21 lines
339 B
Bash
Executable File
21 lines
339 B
Bash
Executable File
#!/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"
|