IOweb/node_modules/astro/dist/cli/infra/cli-command-runner.js
2026-07-03 15:07:38 -05:00

18 lines
323 B
JavaScript

class CliCommandRunner {
#helpDisplay;
constructor({
helpDisplay
}) {
this.#helpDisplay = helpDisplay;
}
run(command, ...args) {
if (this.#helpDisplay.shouldFire()) {
this.#helpDisplay.show(command.help);
return;
}
return command.run(...args);
}
}
export {
CliCommandRunner
};