Skip to content

Commit

Permalink
Merge pull request #2 from totallymoney/chore/add-semantic-release-pkgs
Browse files Browse the repository at this point in the history
chore: add semantic release plugin deps
  • Loading branch information
ljbc1994 authored Jul 30, 2021
2 parents 60ca536 + bbc5bff commit 2a97089
Show file tree
Hide file tree
Showing 2 changed files with 104 additions and 18 deletions.
82 changes: 82 additions & 0 deletions package-lock.json

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

40 changes: 22 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
"string.prototype.matchall": "^4.0.5"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"eslint": "^7.31.0",
"mocha": "^9.0.2",
"semantic-release": "^17.4.4"
Expand All @@ -36,23 +38,25 @@
"node": ">=0.10.0"
},
"release": {
"branches": ["main"],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json",
"package-lock.json"
]
}
],
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json",
"package-lock.json"
]
}
],
"@semantic-release/github"
]
}
]
}
}

0 comments on commit 2a97089

Please sign in to comment.