UNPKG

560 BJavaScriptView Raw
1module.exports = {
2 // Add logging for releases until we are fully confident of the release solution.
3 debug: true,
4 branch: 'master',
5 verifyConditions: [
6 '@semantic-release/changelog',
7 '@semantic-release/npm',
8 '@semantic-release/github'
9 ],
10 prepare: [
11 './tools/update-contributors',
12 '@semantic-release/changelog',
13 '@semantic-release/npm',
14 '@semantic-release/git'
15 ],
16 publish: [
17 '@semantic-release/npm',
18 '@semantic-release/github'
19 ],
20 success: [
21 '@semantic-release/github',
22 './tools/update-docs'
23 ]
24}