(strings, ...values)
| 49 | // it should always show to the user unless --json is specified |
| 50 | // it's not controled by log levels |
| 51 | dialogue (strings, ...values) { |
| 52 | const json = this.config.get('json') |
| 53 | if (!json) { |
| 54 | output.standard(this.warnString(strings, ...values)) |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | createConfig (pkg, body) { |
| 59 | const spec = npa(pkg) |
no test coverage detected