refactor: refine configuration for simpler package

This commit is contained in:
Shinwoo PARK 2023-11-17 17:14:03 +09:00
parent 68c514ac50
commit f437cf5886
3 changed files with 26 additions and 4 deletions

19
dist/package.json vendored Normal file
View File

@ -0,0 +1,19 @@
{
"name": "nestlogged",
"version": "1.0.0",
"description": "A NestJS Logger Decorator Library",
"main": "index.js",
"repository": "https://github.com/worplo/nestlogged",
"author": "Shinwoo PARK",
"license": "MIT",
"private": false,
"dependencies": {
"@nestjs/common": "^10.2.8",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@types/node": "^20.9.1",
"typescript": "^5.2.2"
}
}

View File

@ -2,11 +2,11 @@
"name": "nestlogged", "name": "nestlogged",
"version": "1.0.0", "version": "1.0.0",
"description": "A NestJS Logger Decorator Library", "description": "A NestJS Logger Decorator Library",
"main": "index.js", "main": "./dist/index.js",
"repository": "https://github.com/worplo/nestlogged", "repository": "https://github.com/worplo/nestlogged",
"author": "Shinwoo PARK", "author": "Shinwoo PARK",
"license": "MIT", "license": "MIT",
"private": false, "private": true,
"dependencies": { "dependencies": {
"@nestjs/common": "^10.2.8", "@nestjs/common": "^10.2.8",
"reflect-metadata": "^0.1.13", "reflect-metadata": "^0.1.13",
@ -17,6 +17,7 @@
"typescript": "^5.2.2" "typescript": "^5.2.2"
}, },
"scripts": { "scripts": {
"build": "tsc" "build": "tsc",
"publish": "tsc && yarn publish dist"
} }
} }

View File

@ -4,7 +4,9 @@
"target": "ES2021", "target": "ES2021",
"sourceMap": true, "sourceMap": true,
"outDir": "./dist", "outDir": "./dist",
"rootDir": "./src" "rootDir": "./src",
"declaration": true,
"declarationMap": true,
}, },
"exclude": [ "exclude": [
"node_modules" "node_modules"