Skip to content

Commit

Permalink
Removed the "verifyPackagesPublishedCorrectly()" task.
Browse files Browse the repository at this point in the history
  • Loading branch information
pomek committed Oct 8, 2024
1 parent 8a286bb commit caa0fce
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 147 deletions.
1 change: 0 additions & 1 deletion packages/ckeditor5-dev-release-tools/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ export { default as saveChangelog } from './utils/savechangelog.js';
export { default as executeInParallel } from './utils/executeinparallel.js';
export { default as validateRepositoryToRelease } from './utils/validaterepositorytorelease.js';
export { default as checkVersionAvailability } from './utils/checkversionavailability.js';
export { default as verifyPackagesPublishedCorrectly } from './tasks/verifypackagespublishedcorrectly.js';
export { default as getNpmTagFromVersion } from './utils/getnpmtagfromversion.js';
export { default as isVersionPublishableForTag } from './utils/isversionpublishablefortag.js';
export { default as provideToken } from './utils/providetoken.js';

This file was deleted.

8 changes: 0 additions & 8 deletions packages/ckeditor5-dev-release-tools/tests/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ import {
import executeInParallel from '../lib/utils/executeinparallel.js';
import validateRepositoryToRelease from '../lib/utils/validaterepositorytorelease.js';
import checkVersionAvailability from '../lib/utils/checkversionavailability.js';
import verifyPackagesPublishedCorrectly from '../lib/tasks/verifypackagespublishedcorrectly.js';
import getNpmTagFromVersion from '../lib/utils/getnpmtagfromversion.js';
import isVersionPublishableForTag from '../lib/utils/isversionpublishablefortag.js';
import provideToken from '../lib/utils/providetoken.js';
Expand Down Expand Up @@ -239,13 +238,6 @@ describe( 'dev-release-tools/index', () => {
} );
} );

describe( 'verifyPackagesPublishedCorrectly()', () => {
it( 'should be a function', () => {
expect( verifyPackagesPublishedCorrectly ).to.be.a( 'function' );
expect( index.verifyPackagesPublishedCorrectly ).to.equal( verifyPackagesPublishedCorrectly );
} );
} );

describe( 'provideToken()', () => {
it( 'should be a function', () => {
expect( provideToken ).to.be.a( 'function' );
Expand Down

This file was deleted.

16 changes: 0 additions & 16 deletions scripts/publishpackages.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,22 +43,6 @@ const tasks = new Listr( [
.run( confirm, { message: 'Do you want to continue?' } );
}
} );
},
retry: 3
},
{
title: 'Checking if packages that returned E409 error code were uploaded correctly.',
task: async ( _, task ) => {
return releaseTools.verifyPackagesPublishedCorrectly( {
packagesDirectory: RELEASE_DIRECTORY,
version: latestVersion,
onSuccess: text => {
task.output = text;
}
} );
},
options: {
persistentOutput: true
}
},
{
Expand Down

0 comments on commit caa0fce

Please sign in to comment.