Used to retrieve a task with the given name. Passes the new task the standard information available (like `ui`, `project`, etc). @method taskFor @param dasherizedName @public
(dasherizedName)
| 1274 | @public |
| 1275 | */ |
| 1276 | taskFor(dasherizedName) { |
| 1277 | const Task = require(`../tasks/${dasherizedName}`); |
| 1278 | |
| 1279 | return new Task({ |
| 1280 | ui: this.ui, |
| 1281 | project: this.project, |
| 1282 | }); |
| 1283 | }, |
| 1284 | |
| 1285 | /** |
| 1286 | Inserts the given content into a file. If the `contentsToInsert` string is already |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…