| 35 | |
| 36 | tasks: { |
| 37 | GenerateFromBlueprint: class extends Task { |
| 38 | init() { |
| 39 | super.init(...arguments); |
| 40 | |
| 41 | this.project = project; |
| 42 | } |
| 43 | |
| 44 | run(options) { |
| 45 | return Promise.resolve(options); |
| 46 | } |
| 47 | }, |
| 48 | }, |
| 49 | }); |
| 50 |
nothing calls this directly
no outgoing calls
no test coverage detected