codeant-ai-for-open-source[bot] commented on PR #37222:
URL: https://github.com/apache/superset/pull/37222#issuecomment-3866436579
## **Sequence Diagram**
This PR swaps the monolithic Lerna dev-dependency for modular @lerna-lite
packages and updates lerna.json schema. The diagram shows how developer/CI
commands now invoke the lightweight lerna-lite CLI which dispatches to the
exec/version/publish modules affecting monorepo packages (build/publish flows).
```mermaid
sequenceDiagram
participant Dev/CI
participant npm_scripts as "npm scripts"
participant LernaLiteCLI as "@lerna-lite/cli"
participant LernaLiteModules as "@lerna-lite/{exec,version,publish}"
participant Monorepo as "packages & plugins"
Dev/CI->>npm_scripts: run build / version / publish commands
npm_scripts->>LernaLiteCLI: invoke lerna (now @lerna-lite/cli)
LernaLiteCLI->>LernaLiteModules: route to exec/version/publish
LernaLiteModules->>Monorepo: run commands (exec babel / version dry-run
/ publish)
Monorepo-->>LernaLiteModules: results (build artifacts / version info /
publish outcome)
LernaLiteModules-->>npm_scripts: exit status
npm_scripts-->>Dev/CI: CI passes / publish steps complete
```
---
*Generated by [CodeAnt AI](https://codeant.ai)*
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]