replace commander with yargs

This commit is contained in:
Aman Varshney
2025-04-12 11:54:14 +05:30
parent f4c5052615
commit bef818212e
6 changed files with 284 additions and 252 deletions

View File

@@ -42,7 +42,7 @@ export function generateReproducibleCommand(config: ProjectConfig): string {
if (config.examples && config.examples.length > 0) {
flags.push(`--examples ${config.examples.join(" ")}`);
} else {
flags.push("--no-examples");
flags.push("--examples none");
}
if (config.packageManager) {