@@ -62,7 +62,7 @@ export const commands: Command[] = [
6262 { flag : "--skip" , description : "Comma-separated deps to exclude" } ,
6363 {
6464 flag : "--generate, -g" ,
65- description : "Generate reference files for deps without existing ones " ,
65+ description : "Force local generation for deps without existing refs " ,
6666 } ,
6767 { flag : "--dry-run, -d" , description : "Show what would be done" } ,
6868 { flag : "--yes, -y" , description : "Skip confirmations" } ,
@@ -247,7 +247,7 @@ ow config show
247247#### Step 5: Initialize in the current project (non-interactive)
248248
249249\`\`\`bash
250- ow project init --yes --all --generate
250+ ow project init --yes --all
251251\`\`\`
252252
253253This will:
@@ -258,12 +258,12 @@ This will:
258258
259259If you want a specific set of dependencies instead of \`--all\`:
260260\`\`\`bash
261- ow project init --yes --deps "zod,typescript,vitest" --generate
261+ ow project init --yes --deps "zod,typescript,vitest"
262262\`\`\`
263263
264264Or exclude specific dependencies:
265265\`\`\`bash
266- ow project init --yes --all --skip "react,react-dom" --generate
266+ ow project init --yes --all --skip "react,react-dom"
267267\`\`\`
268268
269269#### Step 6: Verify setup
0 commit comments