@private @method _writeFile @param {Object} info @return {Promise}
(info)
| 328 | @return {Promise} |
| 329 | */ |
| 330 | async _writeFile(info) { |
| 331 | if (!this.dryRun) { |
| 332 | return fs.outputFile(info.outputPath, await info.render()); |
| 333 | } |
| 334 | }, |
| 335 | |
| 336 | /** |
| 337 | Actions lookup |
nothing calls this directly
no test coverage detected
searching dependent graphs…