alias b := build alias c := clean build: mkdir -p build cat src/data/* | toml2json > build/gewichtungen.json # typescript compilation depends on gewichtungen.json tsc mv src/rechner.js build/ webpack --mode development cp src/index.html dist/index.html clean: rm -rf ./build ./dist