This file contains 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 characters
[ | |
"@antoinerey/comp-Fetch", | |
"@antoinerey/comp-VideoPlayer", | |
"@beisen/Accordion", | |
"@beisen/Approve", | |
"@beisen/AreaSelector", | |
"@beisen/AutoComplete", | |
"@beisen/AutoTree", | |
"@beisen/BaseButton", | |
"@beisen/Beaute", |
This file contains 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 characters
'use strict' | |
const fs = require('fs') | |
const path = require('path') | |
const zlib = require('zlib') | |
require.extensions['.gz'] = | |
require.extensions['.js.gz'] = (module, filename) => { | |
if (path.extname(filename.slice(0, -3)) === '.js') { | |
let content = zlib.unzipSync(fs.readFileSync(filename)).toString() |
This file contains 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 characters
node ../lodash-cli/bin/lodash modularize exports=amd -o ./ && node ../lodash-cli/bin/lodash exports=amd -d -o ./main.js |