Update webpack to v3

This commit is contained in:
Jonathan Cremin 2018-04-13 01:42:16 +01:00
parent e12152f7a8
commit b87476abc9
15 changed files with 3030 additions and 6269 deletions

View file

@ -11,6 +11,10 @@ help:
.PHONY: start
start: docker-compose-up watch-frontend ## Start containers and watch frontend
.PHONY: build
build: ## Run `yarn run build`
docker-compose run --rm app yarn run build
.PHONY: test
test: ## Run tests
docker-compose run --rm app yarn test
@ -34,3 +38,7 @@ docker-compose-up: ## Start (and create) docker containers
.PHONY: yarn
yarn: ## Update yarn dependencies
docker-compose run --rm app yarn
.PHONY: shell
shell: ## Run shell
docker-compose run --rm app sh