Skip to content

Commit f62f0b3

Browse files
committed
Remove deconstruction of array.
1 parent 47b9be5 commit f62f0b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/doxdox-cli/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ const overridePackage = args.flags['-p'] || args.flags['--package'];
9090
}
9191

9292
const paths = await globby(
93-
(args.inputs?.length ? [...args.inputs] : defaultPaths).concat(
93+
(args.inputs?.length ? args.inputs : defaultPaths).concat(
9494
parseIgnoreConfig(overrideIgnore.split(',').join(EOL))
9595
),
9696
{

0 commit comments

Comments
 (0)