Skip to content

Commit

Permalink
style: lint fixes for semantic-release config
Browse files Browse the repository at this point in the history
  • Loading branch information
cwillisf committed Dec 21, 2023
1 parent 3d56bbd commit 1fe67a5
Showing 1 changed file with 18 additions and 17 deletions.
35 changes: 18 additions & 17 deletions release.config.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
/* global module */
module.exports = {
extends: 'scratch-semantic-release-config',
branches: [
{
name: 'develop'
// default channel
},
{
name: 'beta/*',
channel: 'beta',
prerelease: 'beta'
},
{
name: 'hotfix/*',
channel: 'hotfix',
prerelease: 'hotfix'
}
]
extends: 'scratch-semantic-release-config',
branches: [
{
name: 'develop'
// default channel
},
{
name: 'beta/*',
channel: 'beta',
prerelease: 'beta'
},
{
name: 'hotfix/*',
channel: 'hotfix',
prerelease: 'hotfix'
}
]
};

0 comments on commit 1fe67a5

Please sign in to comment.