@wyxos/zephyr 0.3.1 → 0.3.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.
package/package.json
CHANGED
|
@@ -20,10 +20,10 @@ function logScheduledTasks(steps, {logProcessing} = {}) {
|
|
|
20
20
|
|
|
21
21
|
const extraTasks = steps
|
|
22
22
|
.slice(1)
|
|
23
|
-
.map((step) => step.label)
|
|
24
|
-
.join('
|
|
23
|
+
.map((step) => ` - ${step.label}`)
|
|
24
|
+
.join('\n')
|
|
25
25
|
|
|
26
|
-
logProcessing?.(`Additional tasks scheduled
|
|
26
|
+
logProcessing?.(`Additional tasks scheduled:\n${extraTasks}`)
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
export async function executeRemoteDeploymentPlan({
|