Skip to content

Commit

Permalink
chore: supports auto release
Browse files Browse the repository at this point in the history
BREAKING CHANGE: drops support to node 6
  • Loading branch information
balavishnuvj committed May 17, 2020
1 parent e617508 commit 16e8ca9
Show file tree
Hide file tree
Showing 3 changed files with 1,971 additions and 29 deletions.
1 change: 1 addition & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = {extends: ['@commitlint/config-conventional']};
18 changes: 17 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"module": "dist/react-hooks-form-validator.es.js",
"scripts": {
"build": "rollup --config",
"release": "standard-version --dry-run -a",
"test": "jest"
},
"files": [
Expand All @@ -31,21 +32,36 @@
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"@testing-library/react-hooks": "^3.2.1",
"babel-jest": "^24.9.0",
"babel-preset-react": "^6.24.1",
"cz-conventional-changelog": "3.2.0",
"husky": "^4.2.5",
"jest": "^24.9.0",
"react-test-renderer": "^16.12.0",
"rollup": "^1.29.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-terser": "^5.2.0"
"rollup-plugin-terser": "^5.2.0",
"standard-version": "^8.0.0"
},
"peerDependencies": {
"react": "^16.12.0"
},
"dependencies": {
"fastest-validator": "1.4.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}
Loading

0 comments on commit 16e8ca9

Please sign in to comment.