notenrechner/justfile
Frieder Hannenheim a2e108f6e8 Initial Commit
2025-01-28 17:56:14 +01:00

13 lines
236 B
Makefile

alias b := build
alias c := clean
build:
mkdir -p build
tsc --outFile build/rechner.js src/rechner.ts
cat src/data/* | toml2json > build/gewichtungen.json
cp src/index.html build/index.html
clean:
rm -rf ./build