File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
packages/release-config/src Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 11import type { Options as SemRelOptions , PluginSpec } from 'semantic-release' ;
22
3- import type { Options } from './type' ;
43import commitAnalyzer from './plugins/commitAnalyzer' ;
54import git from './plugins/git' ;
65import github from './plugins/github' ;
76import npm from './plugins/npm' ;
7+ import type { Options } from './type' ;
88
9- export type { ReleaseRule , Options } from './type' ;
9+ export type { Options , ReleaseRule } from './type' ;
1010
1111export const createConfig = ( options ?: Options ) : SemRelOptions => {
1212 const opts = {
@@ -76,6 +76,7 @@ export const createConfig = (options?: Options): SemRelOptions => {
7676 plugins : plugins . filter ( ( p ) => ! ! p ) ,
7777 branches : [
7878 'master' ,
79+ 'main' ,
7980 { name : 'rc-*' , prerelease : 'rc' , channel : 'rc' } ,
8081 { name : 'rc' , prerelease : true } ,
8182 { name : 'alpha' , prerelease : 'alpha' , channel : 'alpha' } ,
You can’t perform that action at this time.
0 commit comments