2017-07-30 05:35:12 +02:00
|
|
|
const fs = require('fs');
|
2017-07-30 07:04:23 +02:00
|
|
|
const path = require('path');
|
|
|
|
|
|
|
|
require('console-group').install();
|
|
|
|
require('source-map-support').install();
|
2017-03-07 20:10:28 +01:00
|
|
|
|
2017-11-23 14:45:22 +01:00
|
|
|
process.env.TEST = true;
|
|
|
|
|
2017-07-30 09:20:15 +02:00
|
|
|
require.extensions['.js'] = function(module, filename) {
|
|
|
|
const exports = [];
|
|
|
|
|
|
|
|
var code = fs.readFileSync(filename, 'utf-8')
|
|
|
|
.replace(/^import (?:\* as )?(\w+) from ['"]([^'"]+)['"];?/gm, 'var $1 = require("$2");')
|
|
|
|
.replace(/^import {([^}]+)} from ['"](.+)['"];?/gm, 'var {$1} = require("$2");')
|
|
|
|
.replace(/^export default /gm, 'module.exports = ')
|
|
|
|
.replace(/^export (const|let|var|class|function) (\w+)/gm, (match, type, name) => {
|
|
|
|
exports.push(name);
|
|
|
|
return `${type} ${name}`;
|
|
|
|
})
|
|
|
|
.replace(/^export \{([^}]+)\}/gm, (match, names) => {
|
|
|
|
names.split(',').filter(Boolean).forEach(name => {
|
2017-07-30 05:35:12 +02:00
|
|
|
exports.push(name);
|
2017-07-30 09:20:15 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
return '';
|
|
|
|
})
|
|
|
|
.replace(/^export function (\w+)/gm, 'exports.$1 = function $1');
|
|
|
|
|
|
|
|
exports.forEach(name => {
|
|
|
|
code += `\nexports.${name} = ${name};`;
|
|
|
|
});
|
|
|
|
|
|
|
|
try {
|
|
|
|
return module._compile(code, filename);
|
|
|
|
} catch (err) {
|
|
|
|
console.log(code); // eslint-disable-line no-console
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
};
|