basic notenrechner

This commit is contained in:
Frieder Hannenheim 2025-01-29 14:57:00 +01:00
parent c875b45c44
commit d8eaa98e36
7 changed files with 223 additions and 21 deletions

View file

@ -6,9 +6,13 @@ build:
mkdir -p build
cat src/data/* | toml2json > build/gewichtungen.json
# typescript compilation depends on gewichtungen.json
tsc --outFile build/rechner.js src/rechner.ts
cp src/index.html build/index.html
tsc
mv src/rechner.js build/
webpack --mode development
cp src/index.html dist/index.html
clean:
rm -rf ./build
rm -rf ./build ./dist