Initial Commit

This commit is contained in:
Frieder Hannenheim 2025-01-28 17:56:14 +01:00
commit a2e108f6e8
9 changed files with 919 additions and 0 deletions

13
justfile Normal file
View file

@ -0,0 +1,13 @@
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