@listr2/manager
Version:
Extension for Listr2 to easily create sane defaults for task lists.
83 lines (80 loc) • 2.42 kB
JavaScript
;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/index.ts
var src_exports = {};
__export(src_exports, {
Manager: () => Manager
});
module.exports = __toCommonJS(src_exports);
// src/manager.ts
var import_listr2 = require("listr2");
var Manager = class {
constructor(options) {
this.options = options;
}
static {
__name(this, "Manager");
}
errors = [];
tasks = [];
get ctx() {
return this.options.ctx;
}
set ctx(ctx) {
this.options.ctx = ctx;
}
add(tasks, options) {
this.tasks = [...this.tasks, this.indent(tasks, options)];
}
async runAll(options) {
options = { ...this.options, ...options };
const tasks = [...this.tasks];
this.tasks = [];
const ctx = await this.run(tasks, options);
return ctx;
}
newListr(tasks, options) {
return new import_listr2.Listr(tasks, options);
}
indent(tasks, options, taskOptions) {
options = { ...this.options, ...options };
if (typeof tasks === "function") {
return {
...taskOptions,
task: /* @__PURE__ */ __name((ctx) => this.newListr(tasks(ctx), options), "task")
};
}
return {
...taskOptions,
task: /* @__PURE__ */ __name(() => this.newListr(tasks, options), "task")
};
}
async run(tasks, options) {
options = { ...this.options, ...options };
const task = this.newListr(tasks, options);
const ctx = await task.run();
this.errors.push(...task.errors);
return ctx;
}
};
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
Manager
});