Skip to content

Commit

Permalink
chore(publish): 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcdo29 committed May 10, 2023
1 parent ee92f4b commit 9bba970
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 6 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
29 changes: 23 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -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 <me@jaymcdoniel.dev>",
"private": false,
"license": "MIT",
"files": ["dist"],
"files": [
"dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
Expand Down Expand Up @@ -74,16 +82,25 @@
}
},
"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": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"moduleFileExtensions": ["js", "json", "ts"],
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
Expand Down

0 comments on commit 9bba970

Please sign in to comment.