From 3bc3acf38c8d8ead5f3cdeedced4860692ca3827 Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Mon, 29 Jul 2024 15:34:52 +0200 Subject: [PATCH] chore(Makefile): add assets/icons generation target --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 250b21e22..dce7df4c1 100644 --- a/Makefile +++ b/Makefile @@ -113,7 +113,11 @@ frontend-%: node_modules node_modules: package.json npm ci --cache .npm --prefer-offline -well-known: node_modules well-known/.well-known +assets/icons: node_modules + ./utils/renamer.pl node_modules/@fortawesome/fontawesome-free/svgs/solid utils/rename-fa.json assets/icons/fradrive + ./utils/renamer.pl node_modules/@fortawesome/fontawesome-free/svgs/regular utils/rename-fa.json assets/icons/fradrive + +well-known: node_modules assets/icons well-known/.well-known npx webpack --progress # mark well-known directory as clean after successful webpack run: touch well-known/.well-known