Skip to content

Commit

Permalink
chore(deps): release-config-npm@1.0.1
Browse files Browse the repository at this point in the history
replace inline config with codedependant npm config for semantic release
  • Loading branch information
esatterwhite committed Apr 8, 2021
1 parent dbe464e commit 98b1a88
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 39 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
]
},
"devDependencies": {
"@codedependant/release-config-npm": "^1.0.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.7",
Expand Down
43 changes: 4 additions & 39 deletions release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,43 +2,8 @@

/* istanbul ignore file */
module.exports = {
branches: [
'master'
]
, plugins: [
['@semantic-release/commit-analyzer', {
parserOpts: {
noteKeywords: ['BREAKING', 'BREAKING CHANGE', 'BREAKING CHANGES']
, referenceActions: [
'close', 'closes', 'closed'
, 'fix', 'fixes', 'fixed'
, 'resolve', 'resolves', 'resolved'
]
}
, releaseRules: [
{type: 'build', release: 'patch'}
, {type: 'ci', release: 'patch'}
, {type: 'release', release: 'patch'}
, {type: 'chore', release: 'patch'}
, {type: 'refactor', release: 'patch'}
, {type: 'test', release: 'patch'}
, {type: 'doc', release: 'patch'}
, {type: 'lib', release: 'patch'}
]
}],
, ['@semantic-release/release-notes-generator', null]
, ['@semantic-release/changelog', {
changelogFile: 'CHANGELOG.md'
, changelogTitle: '# Semantic Release Docker'
}]
, ['@semantic-release/npm', null]
, ['@semantic-release/git', {
assets: [
'package.json'
, 'pnpm-lock.yaml'
, 'CHANGELOG.md'
]
}]
, ['@semantic-release/github', null]
]
branches: ['master']
, extends: '@codedependant/release-config-npm'
, changelogFile: 'CHANGELOG.md'
, changelogTitle: '# Semantic Release Docker'
}

0 comments on commit 98b1a88

Please sign in to comment.