Make Packager send fresh modules through HMR interface

Reviewed By: frantic

Differential Revision: D2787951

fb-gh-sync-id: 63c04710b60d99b5161ef9a40b116ba2f72df745
This commit is contained in:
Martín Bigio
2015-12-28 16:43:15 -08:00
committed by facebook-github-bot-6
parent 90781d3067
commit ac9c3c548d
3 changed files with 51 additions and 1 deletions

View File

@@ -19,7 +19,12 @@ function attachHMRServer({httpServer, path, packagerServer}) {
return;
}
// TODO(martinb): send HMR update
packagerServer.buildBundleForHMR({
entryFile: filename,
// TODO(martinb): receive platform on query string when client connects
platform: 'ios',
})
.then(bundle => activeWS.send(bundle));
});
const WebSocketServer = require('ws').Server;