alexisvincent / systemjs-hot-reloader

reloads your modules as needed so that you can have satisfyingly fast feedback loop when developing your app
MIT License
228 stars 36 forks source link

Decouple socket.io #106

Closed srolel closed 8 years ago

srolel commented 8 years ago

addresses #105

With the code in this commit I can use the package both in my electron app and an older web app where I tested. It introduces no breaking changes, naturally.

I also added some very basic tests.

JSPM played with config.js and package.json a bit, I've included that as well, let me know if that's not okay.

srolel commented 8 years ago

CI fails because node 4 is used and ES6 features which aren't supported are used (they were used before as well, the tests were skipped and the module wasn't imported). I suggest setting the node version 6. Another solution is to install babel and have systemjs transpile the module.

alexisvincent commented 8 years ago

See #107 Good work on the tests. Want to get to that soon for systemjs-hmr.