@clscripts/del-cli
Version:
del-cli clscripts implementation
17 lines • 443 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DelCli = void 0;
class DelCli {
constructor(opts) {
this.packageExecutable = 'del';
this.files = opts.files;
}
get command() {
return [this.packageExecutable, this.filesArg].filter(Boolean).join(' ');
}
get filesArg() {
return this.files;
}
}
exports.DelCli = DelCli;
//# sourceMappingURL=script.js.map