@ckeditor/ckeditor5-dev-release-tools 45.0.1 → 45.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13,7 +13,6 @@
13
13
  */
14
14
  export default async function publishPackageOnNpmCallback( packagePath, taskOptions ) {
15
15
  const { tools } = await import( '@ckeditor/ckeditor5-dev-utils' );
16
- const { default: fs } = await import( 'fs-extra' );
17
16
 
18
17
  try {
19
18
  await tools.shExec( `npm publish --access=public --tag ${ taskOptions.npmTag }`, {
@@ -22,7 +21,7 @@ export default async function publishPackageOnNpmCallback( packagePath, taskOpti
22
21
  verbosity: 'error'
23
22
  } );
24
23
 
25
- await fs.remove( packagePath );
24
+ // Do nothing if `npm publish` says "OK". We cannot trust anything npm says.
26
25
  } catch {
27
26
  // Do nothing if an error occurs. A parent task will handle it.
28
27
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-dev-release-tools",
3
- "version": "45.0.1",
3
+ "version": "45.0.2",
4
4
  "description": "Tools used for releasing CKEditor 5 and related packages.",
5
5
  "keywords": [],
6
6
  "author": "CKSource (http://cksource.com/)",
@@ -22,7 +22,7 @@
22
22
  "lib"
23
23
  ],
24
24
  "dependencies": {
25
- "@ckeditor/ckeditor5-dev-utils": "^45.0.1",
25
+ "@ckeditor/ckeditor5-dev-utils": "^45.0.2",
26
26
  "@octokit/rest": "^21.0.0",
27
27
  "chalk": "^5.0.0",
28
28
  "cli-columns": "^4.0.0",