Files
skills-here-run-place/node_modules/astro/dist/cli/infra/cli-command-runner.js
Alejandro Martinez f09af719cf Initial commit
2026-02-12 02:04:10 +01:00

19 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
};