import files

This commit is contained in:
Yann Autissier
2021-02-09 17:05:00 +01:00
parent f5c4576411
commit 44a6d37ba5
425 changed files with 23195 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
##
# DEV
## Build assets
.PHONY: dev-assets
dev-assets: ## Build assets
$(call docker-compose-exec,$(DOCKER_SERVICE),yarn build:dev:watch)
.PHONY: dev-outdated
dev-outdated:
$(call docker-compose-exec,$(DOCKER_SERVICE),yarn outdated)
# compile webpack assets (REACT)
.PHONY: dev-webpack-compile
dev-webpack-compile: bootstrap ## Compile dev assets
$(call docker-compose-exec,$(DOCKER_SERVICE),yarn encore dev)
# watch webpack assets updates (REACT)
.PHONY: dev-webpack-watch
dev-webpack-watch: bootstrap ## Watch dev assets update
$(call docker-compose-exec,$(DOCKER_SERVICE),yarn encore dev --watch)