From 13443a4d269e962627e075cb4beab6f91f717452 Mon Sep 17 00:00:00 2001 From: Marko Korhonen Date: Sat, 11 Nov 2023 17:27:29 +0200 Subject: [PATCH] Clean up Makefile, update package-lock --- Makefile | 11 ++--------- package-lock.json | 4 ++-- 2 files changed, 4 insertions(+), 11 deletions(-) diff --git a/Makefile b/Makefile index 50aeaee..87fa56c 100644 --- a/Makefile +++ b/Makefile @@ -1,15 +1,8 @@ -build: node_modules bin - -bin: tsc target/workTimeCalculator - -tsc: node_modules +build: node_modules npm run build node_modules: npm install clean: - rm -r target - -run: tsc - node ./target/main.js + rm -r target node_modules diff --git a/package-lock.json b/package-lock.json index c408257..6c325ea 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "work-time-calculator", - "version": "1.0.0", + "version": "0.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "work-time-calculator", - "version": "1.0.0", + "version": "0.0.1", "dependencies": { "chalk": "^5.3.0", "dayjs": "^1.11.10"