1
0
mirror of https://github.com/yldio/copilot.git synced 2024-09-21 05:43:52 +03:00

bootstrap frontend

This commit is contained in:
Sérgio Ramos 2016-10-20 02:14:26 +01:00 committed by Sérgio Ramos
parent d75ca9ffd4
commit c4376ecbcb
2 changed files with 17 additions and 2 deletions

View File

@ -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
View File

@ -0,0 +1,7 @@
.PHONY: test
test:
npm run test
.PHONY: install
install:
npm install --quiet --no-spin