@ckeditor/ckeditor5-dev-release-tools 38.2.2 → 38.3.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.
@@ -28,7 +28,7 @@ const WORKER_SCRIPT = upath.join( __dirname, 'parallelworker.js' );
28
28
  * @param {String} options.packagesDirectory Relative path to a location of packages to execute a task.
29
29
  * @param {Function} options.taskToExecute A callback that is executed on all found packages.
30
30
  * It receives an absolute path to a package as an argument. It can be synchronous or may return a promise.
31
- * @param {ListrTaskObject} options.listrTask An instance of `ListrTask`.
31
+ * @param {ListrTaskObject} [options.listrTask={}] An instance of `ListrTask`.
32
32
  * @param {AbortSignal|null} [options.signal=null] Signal to abort the asynchronous process. If not set, default AbortController is created.
33
33
  * @param {Object} [options.taskOptions=null] Optional data required by the task.
34
34
  * @param {Function} [options.packagesDirectoryFilter=null] A function that is executed for each found package directory to filter out those
@@ -42,7 +42,7 @@ module.exports = async function executeInParallel( options ) {
42
42
  const {
43
43
  packagesDirectory,
44
44
  taskToExecute,
45
- listrTask,
45
+ listrTask = {},
46
46
  signal = null,
47
47
  taskOptions = null,
48
48
  packagesDirectoryFilter = null,
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-dev-release-tools",
3
- "version": "38.2.2",
3
+ "version": "38.3.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.2.2",
8
+ "@ckeditor/ckeditor5-dev-utils": "^38.3.1",
9
9
  "@octokit/rest": "^19.0.0",
10
10
  "chalk": "^4.0.0",
11
11
  "cli-table": "^0.3.1",