@_unit/unit 1.0.11 → 1.0.12

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.
@@ -40,7 +40,7 @@ export function renderBundle(
40
40
  root: HTMLElement,
41
41
  bundle: BundleSpec,
42
42
  opt: BootOpt
43
- ): System {
43
+ ): [System, Graph] {
44
44
  // console.log('renderBundle')
45
45
 
46
46
  const system = webBoot(window, root, opt)
@@ -49,5 +49,5 @@ export function renderBundle(
49
49
 
50
50
  render(system, $graph)
51
51
 
52
- return system
52
+ return [system, graph]
53
53
  }