bootstrap frontend

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

View File

@ -6,12 +6,20 @@ check:
test-cloudapi-graphql:
$(MAKE) -C cloudapi-graphql test
.PHONY: test-frontend
test-frontend:
$(MAKE) -C frontend test
.PHONY: test
test: test-cloudapi-graphql
test: test-cloudapi-graphql test-frontend
.PHONY: install-cloudapi-graphql
install-cloudapi-graphql:
$(MAKE) -C cloudapi-graphql install
.PHONY: install-frontend
install-frontend:
$(MAKE) -C frontend 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