diff --git a/dist/package.json b/dist/package.json new file mode 100644 index 0000000..7e818c8 --- /dev/null +++ b/dist/package.json @@ -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" + } +} diff --git a/package.json b/package.json index 4e39d8d..ebc22ff 100644 --- a/package.json +++ b/package.json @@ -2,11 +2,11 @@ "name": "nestlogged", "version": "1.0.0", "description": "A NestJS Logger Decorator Library", - "main": "index.js", + "main": "./dist/index.js", "repository": "https://github.com/worplo/nestlogged", "author": "Shinwoo PARK", "license": "MIT", - "private": false, + "private": true, "dependencies": { "@nestjs/common": "^10.2.8", "reflect-metadata": "^0.1.13", @@ -17,6 +17,7 @@ "typescript": "^5.2.2" }, "scripts": { - "build": "tsc" + "build": "tsc", + "publish": "tsc && yarn publish dist" } } diff --git a/tsconfig.json b/tsconfig.json index 258ad10..2a6e08d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,7 +4,9 @@ "target": "ES2021", "sourceMap": true, "outDir": "./dist", - "rootDir": "./src" + "rootDir": "./src", + "declaration": true, + "declarationMap": true, }, "exclude": [ "node_modules"