@ckeditor/ckeditor5-dev-release-tools 38.0.0 → 38.0.1

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.
@@ -95,7 +95,8 @@ function validateRootPackage( packageJson ) {
95
95
  * @returns {Promise}
96
96
  */
97
97
  async function processRootPackage( { cwd, rootPackageJson, outputDirectoryPath } ) {
98
- const rootPackageOutputPath = upath.join( outputDirectoryPath, rootPackageJson.name );
98
+ const rootPackageDirName = rootPackageJson.name.replace( /^@.*\//, '' );
99
+ const rootPackageOutputPath = upath.join( outputDirectoryPath, rootPackageDirName );
99
100
  const pkgJsonOutputPath = upath.join( rootPackageOutputPath, 'package.json' );
100
101
 
101
102
  await fs.ensureDir( rootPackageOutputPath );
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-dev-release-tools",
3
- "version": "38.0.0",
3
+ "version": "38.0.1",
4
4
  "description": "Tools used for releasing CKEditor 5 and related packages.",
5
5
  "keywords": [],
6
6
  "main": "lib/index.js",
7
7
  "dependencies": {
8
- "@ckeditor/ckeditor5-dev-utils": "^38.0.0",
8
+ "@ckeditor/ckeditor5-dev-utils": "^38.0.1",
9
9
  "@octokit/rest": "^17.9.2",
10
10
  "chalk": "^4.0.0",
11
11
  "cli-table": "^0.3.1",