Skip to content

Commit 3ae810c

Browse files
committed
chore: move release config file to ESM
1 parent 860f173 commit 3ae810c

File tree

2 files changed

+19
-16
lines changed

2 files changed

+19
-16
lines changed

.releaserc.json

Lines changed: 0 additions & 16 deletions
This file was deleted.

release.config.js

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
/**
2+
* @type {import('semantic-release').GlobalConfig}
3+
*/
4+
export default {
5+
branches: [
6+
'+([0-9])?(.{+([0-9]),x}).x',
7+
'main',
8+
'next',
9+
'next-major',
10+
{
11+
name: 'beta',
12+
prerelease: true,
13+
},
14+
{
15+
name: 'alpha',
16+
prerelease: true,
17+
},
18+
],
19+
};

0 commit comments

Comments
 (0)