diff --git a/CHANGELOG.md b/CHANGELOG.md index a1ce019..30615b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# [1.3.0](https://github.com/jmcdo29/nest-cookies/compare/v1.2.2...v1.3.0) (2023-05-10) + + +### Features + +* update e2e test for new nest format and support newer nest versions ([523b20c](https://github.com/jmcdo29/nest-cookies/commit/523b20cdfb0b1859ddce50dd3ad10ec971fe8894)) + + + ## [1.2.1](https://github.com/jmcdo29/nest-cookies/compare/v1.2.0...v1.2.1) (2020-11-17) ### Bug Fixes diff --git a/package.json b/package.json index 50e8b0d..ef3c695 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,20 @@ { "name": "nest-cookies", - "version": "1.2.1", + "version": "1.3.0", "description": "A module to work with setting and reading cookies in NestJS", - "keywords": ["NestJS", "Nest", "Express", "Fastify", "Cookies"], + "keywords": [ + "NestJS", + "Nest", + "Express", + "Fastify", + "Cookies" + ], "author": "Jay McDoniel ", "private": false, "license": "MIT", - "files": ["dist"], + "files": [ + "dist" + ], "main": "./dist/index.js", "types": "./dist/index.d.ts", "scripts": { @@ -74,8 +82,13 @@ } }, "lint-staged": { - "*.ts": ["prettier --write", "eslint --ext ts"], - "*.{js,json,html,md}": ["prettier --write"] + "*.ts": [ + "prettier --write", + "eslint --ext ts" + ], + "*.{js,json,html,md}": [ + "prettier --write" + ] }, "config": { "commitizen": { @@ -83,7 +96,11 @@ } }, "jest": { - "moduleFileExtensions": ["js", "json", "ts"], + "moduleFileExtensions": [ + "js", + "json", + "ts" + ], "rootDir": "src", "testRegex": ".spec.ts$", "transform": {