diff --git a/Makefile b/Makefile index ea261aafd3946fb5cb4c3ad0612c59c301ee7d7d..00e34c126848f964badcdf0939d57c4d698914ec 100644 --- a/Makefile +++ b/Makefile @@ -77,8 +77,19 @@ test-unit: $(CODECEPT) catalogs: npm $(CATALOGS) +clean-icons: + find public/assets/images/icons -type f -not -path '*blue*' -delete + optimize-icons: npm - find public/assets/images/icons -type f | xargs -P0 npx svgo -q --config=config/svgo.config.js + find public/assets/images/icons/blue -type f | xargs -P0 npx svgo -q --config=config/svgo.config.js + +icons: optimize-icons + find public/assets/images/icons/blue -type f -print0 | xargs -0 -n1 -I{} echo 'sed "s/#28497c/#000000/" {} > {}' | sed 's#icons/blue#icons/black#2' | sh + find public/assets/images/icons/blue -type f -print0 | xargs -0 -n1 -I{} echo 'sed "s/#28497c/#00962d/" {} > {}' | sed 's#icons/blue#icons/green#2' | sh + find public/assets/images/icons/blue -type f -print0 | xargs -0 -n1 -I{} echo 'sed "s/#28497c/#6e6e6e/" {} > {}' | sed 's#icons/blue#icons/grey#2' | sh + find public/assets/images/icons/blue -type f -print0 | xargs -0 -n1 -I{} echo 'sed "s/#28497c/#cb1800/" {} > {}' | sed 's#icons/blue#icons/red#2' | sh + find public/assets/images/icons/blue -type f -print0 | xargs -0 -n1 -I{} echo 'sed "s/#28497c/#ffffff/" {} > {}' | sed 's#icons/blue#icons/white#2' | sh + find public/assets/images/icons/blue -type f -print0 | xargs -0 -n1 -I{} echo 'sed "s/#28497c/#ffad00/" {} > {}' | sed 's#icons/blue#icons/yellow#2' | sh # default rules for gettext handling js-%.pot: $(VUE_SOURCES)