Skip to content

Commit

Permalink
ci(Makefile): add build_mdi_js job
Browse files Browse the repository at this point in the history
in order to build custom mdi js icons

Signed-off-by: Misha M.-Kupriyanov <[email protected]>
  • Loading branch information
printminion-co authored and tanyaka committed Nov 19, 2024
1 parent 8afe1f5 commit 724d70e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,17 @@ build_mdi_svg: ## Build custom mdi svg
FONTAWESOME_PACKAGE_TOKEN=$(FONTAWESOME_PACKAGE_TOKEN) npm ci && \
npm run build

build_mdi_js: ## Build custom mdi js
cd custom-npms/nc-mdi-js && \
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_mdi_svg build_vue_icons_package ## Build Nextcloud
build_nextcloud: build_mdi_svg build_mdi_js build_vue_icons_package ## Build Nextcloud
composer install --no-dev -o && \
npm ci && \
npm run build
Expand Down

0 comments on commit 724d70e

Please sign in to comment.