ChatGPT-Next-Web/Makefile
2023-03-31 11:01:30 +08: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