mirror of
https://github.com/hkalexling/Mango.git
synced 2026-01-24 00:03:14 -05:00
20 lines
235 B
Makefile
20 lines
235 B
Makefile
all: uglify | build
|
|
|
|
uglify:
|
|
yarn
|
|
yarn uglify
|
|
|
|
build: libs
|
|
crystal build src/mango.cr --release --progress
|
|
|
|
libs:
|
|
shards install
|
|
|
|
run:
|
|
crystal run src/mango.cr --error-trace
|
|
|
|
clean:
|
|
rm -rf dist
|
|
rm yarn.lock
|
|
rm -rf node_modules
|