Skip to content

Commit 3044a5d

Browse files
committed
fix(build): upgrade lock to get required minor feature patches
1 parent 269c15a commit 3044a5d

File tree

4 files changed

+757
-506
lines changed

4 files changed

+757
-506
lines changed

.npmignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
src/__tests__
2+
build/__tests__

commitlint.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = {extends: ['@commitlint/config-conventional']}

package.json

+11-3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
"author": "cdaringe <[email protected]>",
1414
"license": "MIT",
1515
"devDependencies": {
16+
"@commitlint/cli": "^7.5.2",
17+
"@commitlint/config-conventional": "^7.5.0",
1618
"@types/bluebird": "^3.5.24",
1719
"@types/dockerode": "^2.5.9",
1820
"@types/execa": "^0.9.0",
@@ -31,8 +33,8 @@
3133
"postgraphile": "^4.0.1",
3234
"postgraphile-core": "4.3.1",
3335
"prettier-standard": "^9.1.1",
34-
"typescript": "^3.1.6",
35-
"semantic-release": "^15.12.1"
36+
"semantic-release": "^15.12.1",
37+
"typescript": "^3.1.6"
3638
},
3739
"scripts": {
3840
"build": "tsc",
@@ -42,6 +44,7 @@
4244
},
4345
"husky": {
4446
"hooks": {
47+
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
4548
"pre-commit": "lint-staged"
4649
}
4750
},
@@ -62,6 +65,11 @@
6265
"url": "https://github.com/cdaringe/postgraphile-upsert.git"
6366
},
6467
"keywords": [
65-
"postgres", "pg", "postgraphile", "upsert", "plugin", "mutation"
68+
"postgres",
69+
"pg",
70+
"postgraphile",
71+
"upsert",
72+
"plugin",
73+
"mutation"
6674
]
6775
}

0 commit comments

Comments
 (0)