lerna
Version:
Lerna is a fast, modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository
30 lines (27 loc) • 616 B
JavaScript
import {
filterOptions
} from "./chunk-WC2B4V4E.js";
// libs/commands/clean/src/command.ts
var command = {
command: "clean",
describe: "Remove the node_modules directory from all packages",
builder(yargs) {
yargs.options({
y: {
group: "Command Options:",
describe: "Skip all confirmation prompts",
alias: "yes",
type: "boolean"
}
});
return filterOptions(yargs);
},
async handler(argv) {
const cmd = await import("./src-C6AT7X76.js");
return (cmd.default ?? cmd)(argv);
}
};
var command_default = command;
export {
command_default
};