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
- if (stepId !== 'backend-stage' || !flags['adopt-online-baseline']) {
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');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openxiangda",
3
- "version": "1.0.187",
3
+ "version": "1.0.188",
4
4
  "description": "OpenXiangda CLI, workspace build tools, runtime SDK, and form components.",
5
5
  "private": false,
6
6
  "bin": {