basic notenrechner
This commit is contained in:
parent
c875b45c44
commit
d8eaa98e36
7 changed files with 223 additions and 21 deletions
10
justfile
10
justfile
|
@ -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
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue