Skip to content

Commit 5f93e09

Browse files
authored
Merge pull request #530 from ckeditor/ci/3772
Internal: Aligned to ckeditor5-dev ESM changes.
2 parents 8886ca3 + 6b06c80 commit 5f93e09

5 files changed

+2129
-2558
lines changed

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@
3737
},
3838
"devDependencies": {
3939
"@testing-library/jest-dom": "^6.4.8",
40-
"@ckeditor/ckeditor5-dev-bump-year": "^40.0.0",
41-
"@ckeditor/ckeditor5-dev-ci": "^40.0.0",
42-
"@ckeditor/ckeditor5-dev-release-tools": "^40.0.0",
43-
"@ckeditor/ckeditor5-dev-utils": "^40.0.0",
40+
"@ckeditor/ckeditor5-dev-bump-year": "^44.0.0",
41+
"@ckeditor/ckeditor5-dev-ci": "^44.0.0",
42+
"@ckeditor/ckeditor5-dev-release-tools": "^44.0.0",
43+
"@ckeditor/ckeditor5-dev-utils": "^44.0.0",
4444
"@testing-library/dom": "^10.3.1",
4545
"@testing-library/react": "^16.0.0",
4646
"@types/react": "^18.0.0",

scripts/ci/is-project-ready-to-release.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
'use strict';
1111

1212
import { createRequire } from 'module';
13-
import releaseTools from '@ckeditor/ckeditor5-dev-release-tools';
13+
import * as releaseTools from '@ckeditor/ckeditor5-dev-release-tools';
1414

1515
const require = createRequire( import.meta.url );
1616
const { name: packageName } = require( '../../package.json' );

scripts/preparepackages.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010
import { createRequire } from 'module';
1111
import { Listr } from 'listr2';
12-
import releaseTools from '@ckeditor/ckeditor5-dev-release-tools';
13-
import utils from '@ckeditor/ckeditor5-dev-utils';
12+
import * as releaseTools from '@ckeditor/ckeditor5-dev-release-tools';
13+
import * as devUtils from '@ckeditor/ckeditor5-dev-utils';
1414
import parseArguments from './utils/parsearguments.js';
1515
import getListrOptions from './utils/getlistroptions.js';
1616

@@ -65,7 +65,7 @@ const tasks = new Listr( [
6565
{
6666
title: 'Running build command.',
6767
task: () => {
68-
return utils.tools.shExec( 'yarn run build', { async: true, verbosity: 'silent' } );
68+
return devUtils.tools.shExec( 'yarn run build', { async: true, verbosity: 'silent' } );
6969
}
7070
},
7171
{

scripts/publishpackages.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
/* eslint-env node */
99

1010
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';
1312
import parseArguments from './utils/parsearguments.js';
1413
import getListrOptions from './utils/getlistroptions.js';
1514

@@ -89,7 +88,7 @@ const tasks = new Listr( [
8988
if ( process.env.CKE5_RELEASE_TOKEN ) {
9089
githubToken = process.env.CKE5_RELEASE_TOKEN;
9190
} else {
92-
githubToken = await releaseCliUtils.provideToken();
91+
githubToken = await releaseTools.provideToken();
9392
}
9493

9594
await tasks.run();

0 commit comments

Comments
 (0)