Initial commit

This commit is contained in:
Marko Korhonen 2023-11-11 15:13:20 +02:00
commit 92e756977d
Signed by: FunctionalHacker
GPG key ID: A7F78BCB859CD890
9 changed files with 4119 additions and 0 deletions

15
Makefile Normal file
View file

@ -0,0 +1,15 @@
build: node_modules bin
bin: tsc target/workTimeCalculator
tsc:
npm run build
target/workTimeCalculator: target/main.js
npx nexe target/main.js -t 18.17.1 --build -o target/workTimeCalculator
node_modules:
npm install
clean:
rm -r target