I have a dependency graph:
ReactHack depends on reacthack-core, react-core
reacthack-core depends on react-core
react-core is being bundled twice, which means some files are using one copy of react-core's data structures and another is using the other one, so I'm getting inconsistent results. browserify seems to do a good job of deduping this.
I have a dependency graph:
ReactHack depends on reacthack-core, react-core
reacthack-core depends on react-core
react-core is being bundled twice, which means some files are using one copy of react-core's data structures and another is using the other one, so I'm getting inconsistent results.
browserifyseems to do a good job of deduping this.