@ckeditor/ckeditor5-dev-release-tools 49.0.1 → 50.0.0

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.
@@ -17,7 +17,7 @@ export default function confirmNpmTag( versionTag, npmTag ) {
17
17
  const areVersionsEqual = versionTag === npmTag;
18
18
  const color = areVersionsEqual ? chalk.magenta : chalk.red;
19
19
 
20
- // eslint-disable-next-line max-len
20
+ // eslint-disable-next-line @stylistic/max-len
21
21
  const message = `The next release bumps the "${ color( versionTag ) }" version. Should it be published to npm as "${ color( npmTag ) }"?`;
22
22
 
23
23
  const confirmQuestion = {
@@ -3,8 +3,6 @@
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
 
6
- /* eslint-env node */
7
-
8
6
  import crypto from 'crypto';
9
7
  import upath from 'upath';
10
8
  import os from 'os';
@@ -56,7 +56,7 @@ export default function getPackagesPaths( options ) {
56
56
  } else {
57
57
  pathsCollection.skipped.add( dependencyPath );
58
58
  }
59
- } catch ( err ) {
59
+ } catch {
60
60
  /* istanbul ignore next */
61
61
  console.warn( `Missing "package.json file in "${ dependencyPath }". Skipping.` );
62
62
  }
@@ -134,7 +134,7 @@ export function getLastTagFromGit() {
134
134
  const lastTag = tools.shExec( 'git describe --abbrev=0 --tags 2> /dev/null', { verbosity: 'error' } );
135
135
 
136
136
  return lastTag.trim().replace( /^v/, '' ) || null;
137
- } catch ( err ) {
137
+ } catch {
138
138
  /* istanbul ignore next */
139
139
  return null;
140
140
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-dev-release-tools",
3
- "version": "49.0.1",
3
+ "version": "50.0.0",
4
4
  "description": "Tools used for releasing CKEditor 5 and related packages.",
5
5
  "keywords": [],
6
6
  "author": "CKSource (http://cksource.com/)",
@@ -13,7 +13,7 @@
13
13
  "directory": "packages/ckeditor5-dev-release-tools"
14
14
  },
15
15
  "engines": {
16
- "node": ">=20.0.0",
16
+ "node": ">=22.0.0",
17
17
  "npm": ">=5.7.1"
18
18
  },
19
19
  "type": "module",
@@ -22,8 +22,8 @@
22
22
  "lib"
23
23
  ],
24
24
  "dependencies": {
25
- "@ckeditor/ckeditor5-dev-utils": "^49.0.1",
26
- "@octokit/rest": "^21.0.0",
25
+ "@ckeditor/ckeditor5-dev-utils": "^50.0.0",
26
+ "@octokit/rest": "^22.0.0",
27
27
  "chalk": "^5.0.0",
28
28
  "cli-columns": "^4.0.0",
29
29
  "compare-func": "^2.0.0",
@@ -35,10 +35,10 @@
35
35
  "es-toolkit": "^1.35.0",
36
36
  "fs-extra": "^11.0.0",
37
37
  "git-raw-commits": "^5.0.0",
38
- "glob": "^11.0.1",
38
+ "glob": "^11.0.2",
39
39
  "inquirer": "^12.5.2",
40
40
  "minimatch": "^10.0.1",
41
- "pacote": "^20.0.0",
41
+ "pacote": "^21.0.0",
42
42
  "semver": "^7.6.3",
43
43
  "shell-escape": "^0.2.0",
44
44
  "simple-git": "^3.27.0",