diff --git a/frontend_addon/{{ cookiecutter.__folder_name }}/Makefile b/frontend_addon/{{ cookiecutter.__folder_name }}/Makefile index 73232d0..006d2ae 100644 --- a/frontend_addon/{{ cookiecutter.__folder_name }}/Makefile +++ b/frontend_addon/{{ cookiecutter.__folder_name }}/Makefile @@ -40,7 +40,7 @@ install: ## Installs the add-on in a development environment if [ -d $(GIT_FOLDER) ]; then $(PRE_COMMIT) install; else echo "$(RED) Not installing pre-commit$(RESET)";fi pnpm dlx mrs-developer missdev --no-config --fetch-https pnpm i - pnpm build:deps + make build-deps .PHONY: start start: ## Starts Volto, allowing reloading of the add-on during development diff --git a/sub/project_settings/{{ cookiecutter.__folder_name }}/frontend/Makefile b/sub/project_settings/{{ cookiecutter.__folder_name }}/frontend/Makefile index 7f1ad7e..ed70702 100644 --- a/sub/project_settings/{{ cookiecutter.__folder_name }}/frontend/Makefile +++ b/sub/project_settings/{{ cookiecutter.__folder_name }}/frontend/Makefile @@ -38,7 +38,7 @@ help: ## Show this help install: ## Installs the add-on in a development environment pnpm dlx mrs-developer missdev --no-config --fetch-https pnpm i - pnpm build:deps + make build-deps .PHONY: start start: ## Starts Volto, allowing reloading of the add-on during development