nestjs-log-decorator 0.2.0 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +14 -5
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "nestjs-log-decorator",
3
- "version": "0.2.0",
3
+ "version": "0.4.0",
4
4
  "description": "Decorator that removes try catch boilerplate logging from NestJS service methods",
5
5
  "author": "Vlad Goncharov <leovs010@gmail.com>",
6
6
  "license": "AGPL-3.0",
7
- "homepage": "https://github.com/neolabhq/nestjs-log-decorator#readme",
7
+ "homepage": "https://github.com/NeoLabHQ/nestjs-log-decorator#readme",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "git+https://github.com/neolabhq/nestjs-log-decorator.git"
10
+ "url": "https://github.com/NeoLabHQ/nestjs-log-decorator"
11
11
  },
12
12
  "bugs": {
13
- "url": "https://github.com/neolabhq/nestjs-log-decorator/issues"
13
+ "url": "https://github.com/NeoLabHQ/nestjs-log-decorator/issues"
14
14
  },
15
15
  "exports": {
16
16
  ".": "./dist/index.cjs",
@@ -27,18 +27,27 @@
27
27
  "dev": "concurrently -c auto --names build,test npm:build:watch npm:test",
28
28
  "test": "vitest",
29
29
  "typecheck": "tsc --noEmit",
30
- "prepublishOnly": "pnpm run build"
30
+ "prepublishOnly": "npm run build",
31
+ "commit": "cz help",
32
+ "cz": "git add . && cz"
31
33
  },
32
34
  "devDependencies": {
35
+ "@semantic-release/git": "^10.0.1",
33
36
  "@types/node": "^25.0.3",
34
37
  "axios": "^1.13.2",
35
38
  "bumpp": "^10.3.2",
36
39
  "concurrently": "^9.2.1",
40
+ "cz-conventional-changelog": "^3.3.0",
37
41
  "tsdown": "^0.18.1",
38
42
  "typescript": "^5.9.3",
39
43
  "vitest": "^4.0.16"
40
44
  },
41
45
  "peerDependencies": {
42
46
  "@nestjs/common": "*"
47
+ },
48
+ "config": {
49
+ "commitizen": {
50
+ "path": "./node_modules/cz-conventional-changelog"
51
+ }
43
52
  }
44
53
  }