feat: add winston logger (#77)

This commit is contained in:
Manuel
2024-02-10 18:07:24 +01:00
committed by GitHub
parent 00f4a288a4
commit 34875dfd15
4 changed files with 175 additions and 4 deletions

View File

@@ -12,7 +12,7 @@
"clean:workspaces": "turbo clean",
"db:push": "pnpm -F db push",
"db:studio": "pnpm -F db studio",
"dev": "turbo dev --parallel",
"dev": "node start.js",
"format": "turbo format --continue -- --cache --cache-location node_modules/.cache/.prettiercache",
"format:fix": "turbo format --continue -- --write --cache --cache-location node_modules/.cache/.prettiercache",
"lint": "turbo lint --continue -- --cache --cache-location node_modules/.cache/.eslintcache",
@@ -35,5 +35,8 @@
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.2.2"
},
"prettier": "@homarr/prettier-config"
"prettier": "@homarr/prettier-config",
"dependencies": {
"winston": "^3.11.0"
}
}