2017-10-31 20:15:25 +00:00
|
|
|
// JSONStream is a hybrid executable-library
|
|
|
|
// and has a #! /usr/bin/env node at the beginning of the file.
|
|
|
|
// This webpack loader removes it so that we have valid javascript for webpack to load.
|
|
|
|
// Also, JSONStream starts a pipe between stdin and stdout if module.parent is undefined.
|
|
|
|
// This pipe can fail throwing an uncaught exception, so we fake a module.parent to prevent this.
|
|
|
|
// See https://github.com/dominictarr/JSONStream/issues/129
|
2020-05-15 11:01:51 +00:00
|
|
|
module.exports = function (source) {
|
2020-04-27 17:36:28 +00:00
|
|
|
return 'module.parent = {};\n' + source.toString().replace(/^#! .*\n/, '');
|
|
|
|
};
|