@coffeekraken/scripts-stack
Advanced tools
Comparing version 0.0.27 to 0.0.28
{ | ||
"name": "@coffeekraken/scripts-stack", | ||
"version": "0.0.27", | ||
"version": "0.0.28", | ||
"description": "Nice terminal interface to handle npm/yarn scripts execution as well as watch and run automatically the wanted ones", | ||
@@ -5,0 +5,0 @@ "homepage": "https://coffeekraken.io", |
@@ -5,3 +5,3 @@ const exec = require("child_process").exec; | ||
const logSymbols = require("log-symbols"); | ||
const removeBlankLines = require("remove-blank-lines"); | ||
// const removeBlankLines = require("remove-blank-lines"); | ||
const terminate = require("terminate"); | ||
@@ -68,3 +68,3 @@ const commandExistsSync = require("command-exists").sync; | ||
// push new data to the stack | ||
this._stack.push(removeBlankLines(data.toString())); | ||
this._stack.push(data.toString()); | ||
// dispatch new data | ||
@@ -77,3 +77,3 @@ this._dispatchData(data); | ||
// push new data to the stack | ||
this._stack.push(removeBlankLines(data.toString())); | ||
this._stack.push(data.toString()); | ||
// dispatch new data | ||
@@ -80,0 +80,0 @@ this._dispatchData(data); |
474439