Files
theme-earth/Makefile
John Niang aad17d4b5d Add build script into Makefile (#16)
#### What this PR does?

Add build script into Makefile to build the theme conviniently. See README.md for more.

/kind feature

```release-note
None
```
2022-11-14 10:48:15 +00:00

14 lines
261 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 theme.yaml settings.yaml README.md dist
clean:
echo "Clean dist folder"
rm -rf dist