You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dryRun: boolean; // show what would be copied, without actually copying anything
216
216
follow: boolean; // follow symlinked directories when expanding ** patterns
217
217
error: boolean; // raise errors if no files copied
218
-
stat: boolean; // show statistics after execution (time + file count)
218
+
stat: boolean; // show statistics after execution (time + files or folders count)
219
219
rename: (src, dest) => string; // callback to transform the destination filename(s)
220
220
}
221
221
```
222
222
223
223
> [!WARNING]
224
-
> Version 2.0 changed the JS API and moved the destination as the 2nd argument (which is different compared to v1.0 which had the destination inside the 1st argument array as the last element which was super confusing).
224
+
> Version 2.0 changed the JS API and moved the destination as the 2nd argument (which is different compared to v1.0 which previously had its destination inside the 1st argument array as the last element which was super confusing).
0 commit comments