Skip to content

Commit

Permalink
chore: update packages; fix links in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Fcmam5 committed Oct 14, 2023
1 parent 9a96b2f commit 43ad7c9
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 22 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -219,4 +219,5 @@ $RECYCLE.BIN/


libs/**/package-lock.json
libs/**/pnpm-lock.yaml
TODO.md
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [0.1.1] - 2023-10-14

### Updated

- Improved documentation
- Update `devDependencies`

## [0.1.0] - 2023-10-02

### Updated
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# NestHttpProblemDetails(RFC-7807)

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

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

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

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`
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`

#### Usage

Expand Down
2 changes: 1 addition & 1 deletion libs/nest-problem-details-filter/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# NestHttpProblemDetails(RFC-7807)

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`
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`

#### Usage

Expand Down
38 changes: 19 additions & 19 deletions libs/nest-problem-details-filter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nest-problem-details-filter",
"version": "0.1.0",
"version": "0.1.1",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -20,36 +20,36 @@
"build": "nest build",
"prepack": "rm -rf dist && npm run build",
"prepublish": "rm -rf dist && npm run build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage"
},
"devDependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/common": "^10.2.7",
"@nestjs/core": "^10.2.7",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"@nestjs/cli": "^10.1.18",
"@nestjs/schematics": "^10.0.2",
"@nestjs/testing": "^10.2.7",
"@types/jest": "^29.5.5",
"@types/node": "^20.8.6",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"source-map-support": "^0.5.21",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3"
"typescript": "^5.2.2"
},
"jest": {
"moduleFileExtensions": [
Expand Down

0 comments on commit 43ad7c9

Please sign in to comment.