Some performance optimizations

This commit is contained in:
User user
2021-05-18 14:10:59 +02:00
parent 8e183ac1a5
commit 7ca0c4fd72
6 changed files with 5917 additions and 18 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@hibas123/logging",
"version": "3.1.0",
"version": "3.1.1",
"description": "",
"main": "out/index.js",
"types": "out/index.d.ts",
@ -9,7 +9,9 @@
"prepublishOnly": "npm run build",
"build": "tsc && tsc -p tsconfig.esm.json",
"test": "tsc && node out/test.js",
"postpublish": "denreg publish"
"postpublish": "denreg publish",
"bench": "tsc && node benchmark.js",
"prof": "tsc && ndb --prof benchmark.js"
},
"repository": {
"type": "git",
@ -26,6 +28,7 @@
],
"devDependencies": {
"concurrently": "^6.0.2",
"ndb": "^1.1.5",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"