From 5fc75f82cca05d9424a5508b4a1fbf73ec468ba1 Mon Sep 17 00:00:00 2001 From: Stefan Micko Date: Sat, 28 Sep 2024 09:11:34 +0200 Subject: [PATCH] Out of the box problems fixed: reference to app.js had a wrog path and winston was missing in package.json --- node-client/index.js | 2 +- node-client/package.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/node-client/index.js b/node-client/index.js index eb24125..0863c41 100644 --- a/node-client/index.js +++ b/node-client/index.js @@ -1 +1 @@ -require("./dist/src/app.js"); +require("./dist/app.js"); diff --git a/node-client/package.json b/node-client/package.json index 1f44c23..6c18661 100644 --- a/node-client/package.json +++ b/node-client/package.json @@ -65,6 +65,7 @@ "lint-staged": "^15.2.10", "npm-run-all": "^4.1.5", "ts-node": "^10.9.2", - "tsc-watch": "^6.2.0" + "tsc-watch": "^6.2.0", + "winston": "^3.14.2" } }