Skip to content

Commit 43ad7c9

Browse files
committed
chore: update packages; fix links in readme
1 parent 9a96b2f commit 43ad7c9

File tree

5 files changed

+30
-22
lines changed

5 files changed

+30
-22
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,4 +219,5 @@ $RECYCLE.BIN/
219219

220220

221221
libs/**/package-lock.json
222+
libs/**/pnpm-lock.yaml
222223
TODO.md

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88

9+
## [0.1.1] - 2023-10-14
10+
11+
### Updated
12+
13+
- Improved documentation
14+
- Update `devDependencies`
15+
916
## [0.1.0] - 2023-10-02
1017

1118
### Updated

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# NestHttpProblemDetails(RFC-7807)
22

3-
Make NestJS return [RFC-7807]((https://datatracker.ietf.org/doc/html/rfc7807))-compliant HTTP problem details.
3+
Make NestJS return [RFC-7807](https://datatracker.ietf.org/doc/html/rfc7807)-compliant HTTP problem details.
44

55
<!-- omit from toc -->
66
## Table of contents:
@@ -21,7 +21,7 @@ Make NestJS return [RFC-7807]((https://datatracker.ietf.org/doc/html/rfc7807))-c
2121

2222
### [`nest-problem-details-filter`](./libs/nest-problem-details-filter/)
2323

24-
A NestJS exception filter to convert JSON responses to [RFC-7807]((https://datatracker.ietf.org/doc/html/rfc7807))-compliant format. This standardizes HTTP responses and sets `Content-Type` to `application/problem+json`
24+
A NestJS exception filter to convert JSON responses to [RFC-7807](https://datatracker.ietf.org/doc/html/rfc7807)-compliant format. This standardizes HTTP responses and sets `Content-Type` to `application/problem+json`
2525

2626
#### Usage
2727

libs/nest-problem-details-filter/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# NestHttpProblemDetails(RFC-7807)
22

3-
A NestJS exception filter to convert JSON responses to [RFC-7807]((https://datatracker.ietf.org/doc/html/rfc7807))-compliant format. This standardizes HTTP responses and sets `Content-Type` to `application/problem+json`
3+
A NestJS exception filter to convert JSON responses to [RFC-7807](https://datatracker.ietf.org/doc/html/rfc7807)-compliant format. This standardizes HTTP responses and sets `Content-Type` to `application/problem+json`
44

55
#### Usage
66

libs/nest-problem-details-filter/package.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nest-problem-details-filter",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"license": "MIT",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -20,36 +20,36 @@
2020
"build": "nest build",
2121
"prepack": "rm -rf dist && npm run build",
2222
"prepublish": "rm -rf dist && npm run build",
23-
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
23+
"format": "prettier --write \"src/**/*.ts\"",
2424
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
2525
"lint:fix": "npm run lint -- --fix",
2626
"test": "jest",
2727
"test:watch": "jest --watch",
2828
"test:cov": "jest --coverage"
2929
},
3030
"devDependencies": {
31-
"@nestjs/common": "^10.0.0",
32-
"@nestjs/core": "^10.0.0",
31+
"@nestjs/common": "^10.2.7",
32+
"@nestjs/core": "^10.2.7",
3333
"reflect-metadata": "^0.1.13",
3434
"rxjs": "^7.8.1",
35-
"@nestjs/cli": "^10.0.0",
36-
"@nestjs/schematics": "^10.0.0",
37-
"@nestjs/testing": "^10.0.0",
38-
"@types/jest": "^29.5.2",
39-
"@types/node": "^20.3.1",
40-
"@typescript-eslint/eslint-plugin": "^5.59.11",
41-
"@typescript-eslint/parser": "^5.59.11",
42-
"eslint": "^8.42.0",
43-
"eslint-config-prettier": "^8.8.0",
44-
"eslint-plugin-prettier": "^4.2.1",
45-
"jest": "^29.5.0",
46-
"prettier": "^2.8.8",
35+
"@nestjs/cli": "^10.1.18",
36+
"@nestjs/schematics": "^10.0.2",
37+
"@nestjs/testing": "^10.2.7",
38+
"@types/jest": "^29.5.5",
39+
"@types/node": "^20.8.6",
40+
"@typescript-eslint/eslint-plugin": "^6.7.5",
41+
"@typescript-eslint/parser": "^6.7.5",
42+
"eslint": "^8.51.0",
43+
"eslint-config-prettier": "^9.0.0",
44+
"eslint-plugin-prettier": "^5.0.1",
45+
"jest": "^29.7.0",
46+
"prettier": "^3.0.3",
4747
"source-map-support": "^0.5.21",
48-
"ts-jest": "^29.1.0",
49-
"ts-loader": "^9.4.3",
48+
"ts-jest": "^29.1.1",
49+
"ts-loader": "^9.5.0",
5050
"ts-node": "^10.9.1",
5151
"tsconfig-paths": "^4.2.0",
52-
"typescript": "^5.1.3"
52+
"typescript": "^5.2.2"
5353
},
5454
"jest": {
5555
"moduleFileExtensions": [

0 commit comments

Comments
 (0)