remove setting terminal title

didn’t seem to work anymore and output confusing stdout
This commit is contained in:
Chris Breidng
2017-05-16 09:58:42 -04:00
parent bb4ab078a3
commit f259c85023
-8
View File
@@ -11,12 +11,6 @@ const through = require('through')
const globAsync = Promise.promisify(glob)
const setTerminalTitle = (title) => {
process.stdout.write(
`${String.fromCharCode(27)}]0${title}${String.fromCharCode(7)}`
)
}
const packageNameFromPath = (fullPath) => {
return fullPath
.replace(`${process.cwd()}/`, '')
@@ -103,8 +97,6 @@ const noPackagesError = (err) => err.noPackages
const resultsError = (err) => !!err.results
module.exports = (cmd, options) => {
setTerminalTitle(`run:all:${cmd}`)
const packagesFilter = options.package || options.packages
return getDirs()