notenrechner/justfile

15 lines
294 B
Makefile
Raw Normal View History

2025-01-28 17:56:14 +01:00
alias b := build
alias c := clean
build:
mkdir -p build
cat src/data/* | toml2json > build/gewichtungen.json
2025-01-28 18:06:01 +01:00
# typescript compilation depends on gewichtungen.json
tsc --outFile build/rechner.js src/rechner.ts
2025-01-28 17:56:14 +01:00
cp src/index.html build/index.html
clean:
rm -rf ./build