Small wget like mirroring utility.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Rename --stripHost to --strip-host for proper kebab-case

rektide c722abcd d7a6a7d6

+2 -2
+2 -2
src/cli.ts
··· 239 239 output: { type: 'string', description: 'Output directory' }, 240 240 predicate: { type: 'string', description: 'Link predicate: origin or subtree', default: 'subtree' }, 241 241 overwrite: { type: 'string', description: 'Overwrite mode: ignore, cache, or update', default: 'cache' }, 242 - stripHost: { type: 'boolean', description: 'Remove hostname from output paths' }, 242 + 'strip-host': { type: 'boolean', description: 'Remove hostname from output paths' }, 243 243 }, 244 244 async run(ctx) { 245 - const { url, urls, output, predicate, overwrite, stripHost } = ctx.values; 245 + const { url, urls, output, predicate, overwrite, 'strip-host': stripHost } = ctx.values; 246 246 const urlList = url ? [url] : (urls ?? []); 247 247 248 248 if (urlList.length === 0) {