You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
416 B
21 lines
416 B
module.exports = {
|
|
debug: true,
|
|
branches: 'master',
|
|
verifyConditions: [
|
|
'@semantic-release/changelog',
|
|
'@semantic-release/github',
|
|
'@semantic-release/npm'
|
|
],
|
|
prepare: [
|
|
'@semantic-release/changelog',
|
|
'@semantic-release/git',
|
|
'@semantic-release/npm'
|
|
],
|
|
publish: [
|
|
'@semantic-release/github',
|
|
'@semantic-release/npm'
|
|
],
|
|
success: [
|
|
'@semantic-release/github'
|
|
]
|
|
}
|