You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
prepare: clean
|
|
cp -R ./template/* ./playground
|
|
|
|
clean:
|
|
cd ./playground && find . ! -name '.gitkeep' -delete
|
|
|
|
watch:
|
|
tailwindcss -i ./playground/src/css/input.css -o ./playground/src/css/main.css --watch
|
|
|
|
live:
|
|
live-server ./playground/src/
|