This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Map of library name and dependency names | |
| var graph = new Map([ | |
| ["base", ["build"]], | |
| ["build", []], | |
| ["popup", ["base", "lists"]], | |
| ["data", ["base"]], | |
| ["lists", ["base", "data"]], | |
| ["navigations", ["lists"]], | |
| ["grid", ["lists","navigations"]], | |
| ["chart", ["popup"]] |