(options)
| 7 | |
| 8 | class AddonInstallTask extends Task { |
| 9 | constructor(options) { |
| 10 | super(options); |
| 11 | |
| 12 | this.NpmInstallTask = this.NpmInstallTask || require('./npm-install'); |
| 13 | this.BlueprintTask = this.BlueprintTask || require('./generate-from-blueprint'); |
| 14 | } |
| 15 | |
| 16 | run(options) { |
| 17 | const { default: chalk } = require('chalk'); |
nothing calls this directly
no outgoing calls
no test coverage detected