mirror of
https://github.com/ivabus/www
synced 2024-11-10 07:05:15 +03:00
26 lines
516 B
Makefile
26 lines
516 B
Makefile
|
# list available jobs
|
||
|
default:
|
||
|
just --list
|
||
|
|
||
|
# runs `hugo serve` locally
|
||
|
serve:
|
||
|
hugo serve --watch --buildDrafts --source src
|
||
|
|
||
|
# makes the package pages
|
||
|
package-pages:
|
||
|
.github/build-package-pages.sh src/data/packages.json src/content
|
||
|
|
||
|
# builds the site for ci
|
||
|
ci:
|
||
|
-test -d node_modules && rm -rf node_modules
|
||
|
npm ci
|
||
|
hugo --source src --destination ../public --minify
|
||
|
|
||
|
# builds the site
|
||
|
build:
|
||
|
npm i
|
||
|
hugo --source src --destination ../public --minify
|
||
|
|
||
|
# cleans up build artifacts
|
||
|
clean:
|
||
|
rm -rf public
|