@ossjs/release
Version:
Minimalistic, opinionated, and predictable release automation tool.
18 lines (16 loc) • 308 B
JavaScript
import { log } from "./logger.js";
//#region src/Command.ts
var Command = class {
static command;
static description;
static builder = () => {};
log;
constructor(config, argv) {
this.config = config;
this.argv = argv;
this.log = log;
}
run = async () => {};
};
//#endregion
export { Command };