(locator: Locator)
| 53 | } |
| 54 | |
| 55 | log(locator: Locator) { |
| 56 | if (this.cacheOnly) { |
| 57 | this.context.stdout.write(`Adding ${locator.name}@${locator.reference} to the cache...\n`); |
| 58 | } else { |
| 59 | this.context.stdout.write(`Installing ${locator.name}@${locator.reference}...\n`); |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | async installFromDescriptor(descriptor: Descriptor) { |
| 64 | const resolved = await this.context.engine.resolveDescriptor(descriptor, {allowTags: true, useCache: false}); |
no outgoing calls
no test coverage detected