mirror of
https://github.com/alice-lg/alice-lg.git
synced 2024-05-11 05:55:03 +00:00
16 lines
135 B
Makefile
16 lines
135 B
Makefile
|
|
.PHONY: clean
|
|
|
|
all: deps
|
|
yarn build
|
|
|
|
deps:
|
|
yarn install
|
|
|
|
test: deps
|
|
yarn test --ci --all --watchAll=false
|
|
|
|
clean:
|
|
rm -rf ./build
|
|
|