File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -207,14 +207,14 @@ and finally the third and last argument is a callback function which is executed
207207
208208``` js
209209{
210- verbose: bool, // print more information to console
211- up: number, // slice a path off the bottom of the paths
212- exclude: string, // exclude pattern
213- all: bool, // include dot files
214- dryRun: bool, // show what would be copied, without actually copying anything
215- follow: bool, // follow symlinked directories when expanding ** patterns
216- error: bool // raise errors if no files copied
217- stat: bool // show statistics after execution (time + file count)
210+ verbose: boolean; // print more information to console
211+ up: number; // slice a path off the bottom of the paths
212+ exclude: string; // exclude pattern
213+ all: boolean; // include dot files
214+ dryRun: boolean; // show what would be copied, without actually copying anything
215+ follow: boolean; // follow symlinked directories when expanding ** patterns
216+ error: boolean; // raise errors if no files copied
217+ stat: boolean; // show statistics after execution (time + file count)
218218 rename : (src , dest ) => string; // callback to transform the destination filename(s)
219219}
220220```
You can’t perform that action at this time.
0 commit comments