Move build files into build-conf and rename to build-utils

Change-type: patch
Signed-off-by: Cameron Diver <cameron@balena.io>
This commit is contained in:
Cameron Diver
2020-04-27 18:36:28 +01:00
parent 585bd80313
commit 02d088d351
7 changed files with 10 additions and 9 deletions

View File

@ -0,0 +1,9 @@
// 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
module.exports = function(source) {
return 'module.parent = {};\n' + source.toString().replace(/^#! .*\n/, '');
};