1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00

16 lines
135 B
Makefile
Raw Permalink Normal View History

2022-07-27 17:08:24 +02:00
.PHONY: clean
all: deps
yarn build
deps:
yarn install
2022-11-10 11:29:17 +01:00
test: deps
2022-07-27 17:08:24 +02:00
yarn test --ci --all --watchAll=false
clean:
2022-11-10 10:42:42 +01:00
rm -rf ./build
2022-07-27 17:08:24 +02:00