(name)
| 102 | } |
| 103 | |
| 104 | function envIsSet(name) { |
| 105 | return ( |
| 106 | process.env.hasOwnProperty(name) && |
| 107 | process.env[name] && |
| 108 | process.env[name] !== 'undefined' |
| 109 | ) |
| 110 | } |
| 111 | |
| 112 | function getConcurrentlyArgs(scripts, {killOthers = true} = {}) { |
| 113 | const colors = [ |
no outgoing calls
no test coverage detected
searching dependent graphs…