erisu commented on code in PR #573: URL: https://github.com/apache/cordova/pull/573#discussion_r2562988838
########## README.md: ########## @@ -17,7 +17,36 @@ To file a bug, or raise another type of issue, please navigate to the appropriat All Cordova code is hosted in repositories on GitHub. -[](//sketchviz.com/@raphinesse/a6f28acb2281b782d9fb5ef486834deb) +```mermaid +graph TD + cli --> lib + cli --> create + cli --> common + + plugman --> lib + + lib --> fetch + lib --> serve + lib --> common + lib -.-> platforms + + create --> fetch + create --> app-hello-world + create --> common + + fetch --> common + + platforms["`Platforms + * + android + ios, osx + browser`"] + + platforms -->|ios, osx| node-xcode + platforms -->|browser| serve + platforms -->|all| common + platforms -.->|all| js Review Comment: ```suggestion graph TD cli --> common create --> common create --> app-hello-world create --> fetch fetch --> common lib --> fetch lib --> common lib -.-> platforms cli --> create cli --> lib plugman --> lib platforms -->|all| common platforms -.->|all| js platforms -->|browser| serve platforms -->|ios| node-xcode platforms["Platforms<br/>android | browser | ios"] ``` Maybe this? To avoid lines overlapping other lines and boxes. -- 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]
