File tree 3 files changed +5
-6
lines changed
3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 8
8
/* eslint-env node */
9
9
10
10
import { createRequire } from 'module' ;
11
- import releaseTools from '@ckeditor/ckeditor5-dev-release-tools' ;
11
+ import * as releaseTools from '@ckeditor/ckeditor5-dev-release-tools' ;
12
12
13
13
const require = createRequire ( import . meta. url ) ;
14
14
const { name : packageName } = require ( '../../package.json' ) ;
Original file line number Diff line number Diff line change 9
9
10
10
import { createRequire } from 'module' ;
11
11
import { Listr } from 'listr2' ;
12
- import releaseTools from '@ckeditor/ckeditor5-dev-release-tools' ;
13
- import devUtils from '@ckeditor/ckeditor5-dev-utils' ;
12
+ import * as releaseTools from '@ckeditor/ckeditor5-dev-release-tools' ;
13
+ import * as devUtils from '@ckeditor/ckeditor5-dev-utils' ;
14
14
import parseArguments from './utils/parsearguments.js' ;
15
15
import getListrOptions from './utils/getlistroptions.js' ;
16
16
Original file line number Diff line number Diff line change 8
8
/* eslint-env node */
9
9
10
10
import { Listr } from 'listr2' ;
11
- import releaseTools from '@ckeditor/ckeditor5-dev-release-tools' ;
12
- import releaseCliUtils from '@ckeditor/ckeditor5-dev-release-tools/lib/utils/cli.js' ;
11
+ import * as releaseTools from '@ckeditor/ckeditor5-dev-release-tools' ;
13
12
import parseArguments from './utils/parsearguments.js' ;
14
13
import getListrOptions from './utils/getlistroptions.js' ;
15
14
@@ -89,7 +88,7 @@ const tasks = new Listr( [
89
88
if ( process . env . CKE5_RELEASE_TOKEN ) {
90
89
githubToken = process . env . CKE5_RELEASE_TOKEN ;
91
90
} else {
92
- githubToken = await releaseCliUtils . provideToken ( ) ;
91
+ githubToken = await releaseTools . provideToken ( ) ;
93
92
}
94
93
95
94
await tasks . run ( ) ;
You can’t perform that action at this time.
0 commit comments