openxiangda 1.0.187 → 1.0.188
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.
|
@@ -363,7 +363,15 @@ function releaseExecutionPath(changeId, deploymentId, cwd = process.cwd()) {
|
|
|
363
363
|
|
|
364
364
|
function withManagedReleaseForwardedFlags(stepId, args = [], flags = {}) {
|
|
365
365
|
const forwarded = [...args];
|
|
366
|
-
|
|
366
|
+
const baselineAdoptionStages = new Set([
|
|
367
|
+
'form-stage',
|
|
368
|
+
'backend-stage',
|
|
369
|
+
'workflow-stage',
|
|
370
|
+
]);
|
|
371
|
+
if (
|
|
372
|
+
!baselineAdoptionStages.has(stepId) ||
|
|
373
|
+
!flags['adopt-online-baseline']
|
|
374
|
+
) {
|
|
367
375
|
return forwarded;
|
|
368
376
|
}
|
|
369
377
|
forwarded.push('--adopt-online-baseline');
|