generated from PolymeshAssociation/typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release.config.js
41 lines (41 loc) · 1.08 KB
/
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
35
36
37
38
39
40
41
module.exports = {
repositoryUrl: 'https://github.com/PolymeshAssociation/walletconnect-signing-manager.git',
branches: [
'master',
{
name: 'alpha',
prerelease: true,
},
{
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/changelog',
[
'@semantic-release/npm',
{
tarballDir: 'npm-package/',
},
],
[
'@semantic-release/github',
{
assets: ['CHANGELOG.md'],
},
],
],
};