Add unbundling to packager

Reviewed By: tadeuzagallo

Differential Revision: D2707409

fb-gh-sync-id: 30216c36066dae68d83622dba2d598e9dc0a29db
This commit is contained in:
David Aurelio
2015-12-01 07:42:44 -08:00
committed by facebook-github-bot-7
parent b6f5c7fa04
commit cc4a5d39db
15 changed files with 318 additions and 19 deletions

View File

@@ -9,6 +9,8 @@
'use strict';
function ModuleTransport(data) {
this.name = data.name;
assertExists(data, 'code');
this.code = data.code;