Initial Commit
This commit is contained in:
commit
a2e108f6e8
9 changed files with 919 additions and 0 deletions
13
justfile
Normal file
13
justfile
Normal 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
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue