* @private * @class NpmTask * @constructor * @param {Object} options
(options)
| 18 | * @param {Object} options |
| 19 | */ |
| 20 | constructor(options) { |
| 21 | super(options); |
| 22 | |
| 23 | // The command to run: can be 'install' or 'uninstall' |
| 24 | this.command = ''; |
| 25 | } |
| 26 | |
| 27 | get packageManagerOutputName() { |
| 28 | return this.packageManager.name; |
nothing calls this directly
no outgoing calls
no test coverage detected