| 22 | project, |
| 23 | tasks: { |
| 24 | DestroyFromBlueprint: class extends Task { |
| 25 | init() { |
| 26 | super.init(...arguments); |
| 27 | |
| 28 | this.project = project; |
| 29 | } |
| 30 | |
| 31 | run(options) { |
| 32 | return Promise.resolve(options); |
| 33 | } |
| 34 | }, |
| 35 | }, |
| 36 | }); |
| 37 |
nothing calls this directly
no outgoing calls
no test coverage detected