Skip to content

Commit

Permalink
fix: fix json syntax error in release-it config
Browse files Browse the repository at this point in the history
  • Loading branch information
x8lucas8x committed Aug 8, 2019
1 parent f3cd4aa commit 55718f7
Show file tree
Hide file tree
Showing 3 changed files with 281 additions and 12 deletions.
26 changes: 14 additions & 12 deletions .release-it.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
{
"increment": "conventional:angular",
"scripts": {
"changelog": "npx conventional-changelog -p angular | tail -n +3",
"beforeStart": "yarn test",
"beforeStage": "npm run build && npm run lint && npm run test && npx conventional-changelog -p angular -i CHANGELOG -s"
},
"git": {
"commitMessage": "docs(changelog): release ${version}"
},
"github": {
"release": true,
"releaseNotes": "npx conventional-changelog -p angular | tail -n +3"
"hooks": {
"hooks.before:init": "npm run lint && npm run test",
"after:bump": "npm run build && npx conventional-changelog -p angular -i CHANGELOG -s"
},
"git": {
"commitMessage": "docs(changelog): release ${version}"
},
"github": {
"release": true,
"releaseNotes": "npx conventional-changelog -p angular | tail -n +3"
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
}
266 changes: 266 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
"devDependencies": {
"@commitlint/cli": "8.1.0",
"@commitlint/config-conventional": "8.1.0",
"@release-it/conventional-changelog": "1.1.0",
"@types/enzyme": "3.10.3",
"@types/enzyme-adapter-react-16": "1.0.5",
"@types/jest": "24.0.15",
Expand Down

0 comments on commit 55718f7

Please sign in to comment.