-
Notifications
You must be signed in to change notification settings - Fork 5
/
release.config.js
34 lines (34 loc) · 980 Bytes
/
release.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
module.exports = {
repositoryUrl: 'https://github.com/PolymathNetwork/polymath-sdk.git',
branches: [
'master',
'next',
'next-major',
{
name: 'beta',
prerelease: true,
},
],
/*
* In this order the **prepare** step of @semantic-release/npm will run first
* followed by @semantic-release/git:
* - Update the package.json version and create the npm package tarball
* - Push a release commit and tag, including configurable files
*
* See:
* - https://github.com/semantic-release/semantic-release/blob/beta/docs/usage/plugins.md#plugin-ordering
* - https://github.com/semantic-release/semantic-release/blob/beta/docs/extending/plugins-list.md
*/
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
[
'@semantic-release/npm',
{
tarballDir: 'npm-package/',
},
],
'@semantic-release/git',
'@semantic-release/github',
],
};