priduck-color-theme-cli-js/Justfile

23 lines
422 B
Makefile
Raw Normal View History

@default:
just --choose
2024-02-24 18:01:13 +00:00
# Format all the source code
format:
treefmt
just --fmt --unstable
2024-02-24 18:14:41 +00:00
prettier src/*.mjs src/*.postcss --write
2024-02-24 18:01:13 +00:00
format-dist:
prettier ./*.css --write
2024-02-24 18:01:13 +00:00
# Generate all the files
build: colors theme
# Generate dist/colors.css
colors: format && format-dist
node src/generate.mjs
2024-02-24 18:01:13 +00:00
# Generate dist/theme.css
theme: format && format-dist
postcss src/theme.postcss > ./theme.css