Skip to content

Commit

Permalink
feat: generate and commit changelog file on deploy (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwilson1024 committed May 5, 2020
1 parent 6d61442 commit fdca24a
Show file tree
Hide file tree
Showing 4 changed files with 368 additions and 322 deletions.
14 changes: 14 additions & 0 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
["@semantic-release/changelog", {
"changelogFile": "CHANGELOG.md",
}],
"@semantic-release/github",
"@semantic-release/npm",
["@semantic-release/git", {
"assets": ["CHANGELOG.md"],
}],
]
}
2 changes: 1 addition & 1 deletion .yarnrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
save-prefix false
save-prefix ""
21 changes: 12 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,16 @@
"semantic-release": "semantic-release"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^25.2.1",
"babel-jest": "^26.0.0",
"jest": "^26.0.0",
"semantic-release": "false17.0.7",
"typescript": "^3.8.3"
}
"@babel/core": "7.9.6",
"@babel/preset-env": "7.9.6",
"@babel/preset-typescript": "7.9.0",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@types/jest": "25.2.1",
"babel-jest": "26.0.1",
"jest": "26.0.1",
"semantic-release": "17.0.7",
"typescript": "3.8.3"
},
"dependencies": {}
}

0 comments on commit fdca24a

Please sign in to comment.