diff --git a/Makefile b/Makefile index 9a6cec5..683303f 100644 --- a/Makefile +++ b/Makefile @@ -14,12 +14,17 @@ help: ## This help. # thanks to https://marmelab.com/blog/2016/02/29/auto-documented-makefile.html .DEFAULT_GOAL := help +build_mdi_svg: ## Build custom mdi svg + cd custom-npms/nc-mdi-svg && \ + FONTAWESOME_PACKAGE_TOKEN=$(FONTAWESOME_PACKAGE_TOKEN) npm ci && \ + npm run build + build_vue_icons_package: ## Build custom vue icons package cd custom-npms/nc-vue-material-design-icons && \ FONTAWESOME_PACKAGE_TOKEN=$(FONTAWESOME_PACKAGE_TOKEN) npm ci && \ npm run build -build_nextcloud: build_vue_icons_package ## Build Nextcloud +build_nextcloud: build_mdi_svg build_vue_icons_package ## Build Nextcloud composer install --no-dev -o && \ npm ci && \ npm run build