mirror of
https://github.com/cotes2020/jekyll-theme-chirpy.git
synced 2025-06-07 16:17:50 +00:00
11 lines
228 B
Bash
11 lines
228 B
Bash
#!/usr/bin/env bash
|
|
|
|
if [ -f package.json ]; then
|
|
bash -i -c "nvm install --lts && nvm install-latest-npm"
|
|
npm i
|
|
npm run build
|
|
fi
|
|
|
|
# Install dependencies for shfmt extension
|
|
curl -sS https://webi.sh/shfmt | sh &>/dev/null
|