Skip to content

Commit

Permalink
chore: bump dev dependencies versions (#48)
Browse files Browse the repository at this point in the history
* chore: bump dev dependencies versions

* fix: running lint-staged from husky pre-push hook
  • Loading branch information
m-radzikowski authored Sep 16, 2021
1 parent 10780e8 commit 87ed99d
Show file tree
Hide file tree
Showing 4 changed files with 1,559 additions and 1,946 deletions.
4 changes: 4 additions & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

yarn commitlint --edit $1
4 changes: 4 additions & 0 deletions .husky/pre-push
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

yarn run lint-staged
41 changes: 18 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"aws-lambda"
],
"scripts": {
"prepare": "husky install",
"ci": "yarn install --frozen-lockfile",
"pretest": "rimraf coverage/",
"test": "jest --coverage",
Expand All @@ -41,7 +42,7 @@
"src"
],
"dependencies": {
"@types/sinon": "10.0.1",
"@types/sinon": "10.0.2",
"sinon": "^11.1.1",
"tslib": "^2.1.0"
},
Expand All @@ -57,38 +58,32 @@
"@aws-sdk/lib-dynamodb": "3.31.0",
"@aws-sdk/lib-storage": "3.31.0",
"@aws-sdk/types": "3.29.0",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@size-limit/preset-small-lib": "4.10.2",
"@types/jest": "26.0.20",
"@types/node": "14.17.1",
"@typescript-eslint/eslint-plugin": "4.21.0",
"@typescript-eslint/parser": "4.21.0",
"eslint": "7.24.0",
"husky": "4.3.8",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"@commitlint/cli": "13.1.0",
"@commitlint/config-conventional": "13.1.0",
"@size-limit/preset-small-lib": "5.0.3",
"@types/jest": "27.0.1",
"@types/node": "14.14.31",
"@typescript-eslint/eslint-plugin": "4.31.1",
"@typescript-eslint/parser": "4.31.1",
"eslint": "7.32.0",
"husky": "7.0.2",
"jest": "27.2.0",
"lint-staged": "11.1.2",
"npms-cli": "1.6.0",
"rimraf": "3.0.2",
"size-limit": "4.10.2",
"standard-version": "9.1.0",
"ts-jest": "26.5.0",
"ts-node": "10.0.0",
"size-limit": "5.0.3",
"standard-version": "9.3.1",
"ts-jest": "27.0.5",
"ts-node": "10.2.1",
"tsd": "0.17.0",
"typedoc": "0.20.35",
"typedoc": "0.22.3",
"typescript": "4.2.4"
},
"jest": {
"preset": "ts-jest",
"resetMocks": true,
"testEnvironment": "node"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "lint-staged"
}
},
"lint-staged": {
"*.ts": "yarn lint"
},
Expand Down
Loading

0 comments on commit 87ed99d

Please sign in to comment.