ChatGPT-Next-Web/Makefile

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