Files
theme-earth/Makefile
2024-11-18 17:44:07 +08:00

15 lines
265 B
Makefile

build: clean
echo "Building theme"
pnpm install
pnpm build
echo "Theme built successfully!"
echo "Collect theme dist"
mkdir dist
cp -r templates dist
cp -r i18n dist
cp theme.yaml settings.yaml README.md dist
clean:
echo "Clean dist folder"
rm -rf dist