@coffeekraken/scripts-stack
Advanced tools
Comparing version 0.0.29 to 0.0.30
{ | ||
"name": "@coffeekraken/scripts-stack", | ||
"version": "0.0.29", | ||
"version": "0.0.30", | ||
"description": "Nice terminal interface to handle npm/yarn scripts execution as well as watch and run automatically the wanted ones", | ||
@@ -10,2 +10,5 @@ "homepage": "https://coffeekraken.io", | ||
}, | ||
"scripts": { | ||
"test": "cat src/dumbContent.txt" | ||
}, | ||
"keywords": [ | ||
@@ -32,3 +35,8 @@ "coffee", | ||
"license": "MIT", | ||
"_moduleAliases": { | ||
"@coffeekraken/sugar/js": "../../util/sugar/dist/js", | ||
"@coffeekraken/sugar/node": "../../util/sugar/src/node" | ||
}, | ||
"devDependencies": { | ||
"module-alias": "^2.2.2", | ||
"standard": "^10.0.3" | ||
@@ -35,0 +43,0 @@ }, |
@@ -34,5 +34,5 @@ const path = require("path"); | ||
process.env.SCRIPTS_STACK = true; | ||
process.env.STDOUT_COLUMNS = process.stdout.columns; | ||
process.env.STDOUT_COLUMNS = Math.round(process.stdout.columns / 4 * 3); | ||
process.stdout.on('resize', function() { | ||
process.env.STDOUT_COLUMNS = process.stdout.columns; | ||
process.env.STDOUT_COLUMNS = Math.round(process.stdout.columns / 4 * 3); | ||
}); | ||
@@ -39,0 +39,0 @@ |
Sorry, the diff of this file is not supported yet
479254
10
2