mirror of
https://github.com/yldio/copilot.git
synced 2024-11-10 21:30:06 +02:00
bootstrap frontend
This commit is contained in:
parent
d75ca9ffd4
commit
c4376ecbcb
12
Makefile
12
Makefile
@ -6,12 +6,20 @@ check:
|
|||||||
test-cloudapi-graphql:
|
test-cloudapi-graphql:
|
||||||
$(MAKE) -C cloudapi-graphql test
|
$(MAKE) -C cloudapi-graphql test
|
||||||
|
|
||||||
|
.PHONY: test-frontend
|
||||||
|
test-frontend:
|
||||||
|
$(MAKE) -C frontend test
|
||||||
|
|
||||||
.PHONY: test
|
.PHONY: test
|
||||||
test: test-cloudapi-graphql
|
test: test-cloudapi-graphql test-frontend
|
||||||
|
|
||||||
.PHONY: install-cloudapi-graphql
|
.PHONY: install-cloudapi-graphql
|
||||||
install-cloudapi-graphql:
|
install-cloudapi-graphql:
|
||||||
$(MAKE) -C cloudapi-graphql install
|
$(MAKE) -C cloudapi-graphql install
|
||||||
|
|
||||||
|
.PHONY: install-frontend
|
||||||
|
install-frontend:
|
||||||
|
$(MAKE) -C frontend install
|
||||||
|
|
||||||
.PHONY: install
|
.PHONY: install
|
||||||
install: install-cloudapi-graphql
|
install: install-cloudapi-graphql install-frontend
|
||||||
|
7
frontend/Makefile
Normal file
7
frontend/Makefile
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
.PHONY: test
|
||||||
|
test:
|
||||||
|
npm run test
|
||||||
|
|
||||||
|
.PHONY: install
|
||||||
|
install:
|
||||||
|
npm install --quiet --no-spin
|
Loading…
Reference in New Issue
Block a user