muting testdata for stdout
This commit is contained in:
parent
f9d4c66c0f
commit
5e0ae915f2
|
@ -143,10 +143,11 @@ if (require.main === module) {
|
|||
.option('-o, --stdout', 'Specify output as stdout')
|
||||
.option('-s, --submodules <items>', 'Include the listed comma-separated submodules.', list)
|
||||
.parse(process.argv);
|
||||
var bitcoreBundle = createBitcore(program);
|
||||
if (!program.stdout) {
|
||||
var testBundle = createTestData(program);
|
||||
|
||||
testBundle.pipe(fs.createWriteStream('browser/testdata.js'));
|
||||
}
|
||||
var bitcoreBundle = createBitcore(program);
|
||||
bitcoreBundle.pipe(program.stdout ? process.stdout : fs.createWriteStream('browser/bundle.js'));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue