mirror of
https://github.com/yldio/copilot.git
synced 2024-11-11 05:40:11 +02:00
16 lines
350 B
Makefile
16 lines
350 B
Makefile
.PHONY: test
|
|
test:
|
|
./node_modules/.bin/ava
|
|
|
|
.PHONY: install
|
|
install:
|
|
yarn
|
|
$(MAKE) compile-frontent
|
|
|
|
# I'm not sure this is the best idea, let's see how this works out for us
|
|
# and then go with something better once we find pain points
|
|
.PHONY: compile-frontent
|
|
compile-frontent:
|
|
$(MAKE) -C ../frontend compile
|
|
cp -r ../frontend/static/* ./static
|