notenrechner/justfile

14 lines
236 B
Makefile
Raw Normal View History

2025-01-28 17:56:14 +01:00
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