Last active
September 27, 2018 17:17
-
-
Save tbranyen/8648019e37e7d65a9100b5c5907669c2 to your computer and use it in GitHub Desktop.
Revisions
-
tbranyen revised this gist
Sep 27, 2018 . 1 changed file with 0 additions and 13 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,16 +1,3 @@ it('will treekshake a static named import', async () => { const input = register('./a')` const { a } = require('./b'); -
tbranyen revised this gist
Sep 27, 2018 . 1 changed file with 13 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,16 @@ const { throws, equal } = require('assert'); const { register, unregister, webapp } = require('../lib'); const { format } = require('./_utils'); const defaults = { config: null, disableCache: true, disableRegistry: true, debug: true, }; const inputType = 'script'; it('will treekshake a static named import', async () => { const input = register('./a')` const { a } = require('./b'); -
tbranyen created this gist
Sep 27, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,34 @@ it('will treekshake a static named import', async () => { const input = register('./a')` const { a } = require('./b'); console.log(a); `; register('./b')` function b() {} exports.a = 'hello world'; exports.b = b; `; const { source } = await webapp({ ...defaults, input, inputType, }); equal(source.code, format` var module = { exports: {} }; var exports = module.exports; exports.a = 'hello world'; const a = exports.a; var a_module_1 = { exports: {} }; var a_exports_1 = a_module_1.exports; console.log(a); this.webapp = a_module_1.exports; `); });