CodethinkLabs / software-dependency-visualizer

Prototype software dependency visualizer tool
Apache License 2.0
0 stars 1 forks source link

Inconsistent build order loses symbols #48

Closed jmacarthur closed 8 years ago

jmacarthur commented 8 years ago

Running 'make' in the top level produces a system which can't find startLoadingAnimation. Running 'make' again in the examples/ directory makes a working system.

jmacarthur commented 8 years ago

Running make in the top level also runs make in 'src'; and since src's Makefile runs tsc without specifying --outfile, tsc overwrites the file it references, which is examples/object-view-demo.js. Fixed by PR #50.

jmacarthur commented 8 years ago

Actually fixed in #51

palvarez89 commented 8 years ago

51 merged