Adding input file with font to generate (iso with colors) + adding an optional extension suffix on font extension

This commit is contained in:
2022-01-03 10:18:20 +01:00
parent ac280e2cb7
commit 669f8875aa
11 changed files with 139 additions and 71 deletions

View File

@ -1,7 +1,15 @@
#/bin/bash
# Font
swift run -c release FontToolCore ./Fonts --extension-output-path ./Fonts/Generated --extension-name R2Font
swift run -c release FontToolCore "./Fonts/sampleFontsAll.txt" \
--extension-output-path "./Fonts/Generated" \
--extension-name "R2Font" \
--extension-suffix "GenAllScript"
# Color
swift run -c release ColorToolCore ./Colors/sampleColors1.txt --style all --xcassets-path "./Colors/colors.xcassets" --extension-output-path "./Colors/Generated/" --extension-name "UIColor" --extension-suffix "GenAllScript"
swift run -c release ColorToolCore "./Colors/sampleColors1.txt" \
--style all \
--xcassets-path "./Colors/colors.xcassets" \
--extension-output-path "./Colors/Generated/" \
--extension-name "UIColor" \
--extension-suffix "GenAllScript"