We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0b8c0d commit 8d77abcCopy full SHA for 8d77abc
README.md
@@ -363,11 +363,15 @@ Specify configuration passed to the [glob](https://www.npmjs.com/package/glob) c
363
364
```js
365
const options = {
366
+
367
+ //Glob settings here (examples given below)
368
glob: {
369
- //Glob settings here (examples given below)
- dot: true, //To include file names starting with a dot
370
- windowsPathsNoEscape: true, //To fix paths on Windows OS when path.join() is used to create paths
+ //To include hidden files (starting with a dot)
371
+ dot: true,
372
373
+ //To fix paths on Windows OS when path.join() is used to create paths
374
+ windowsPathsNoEscape: true,
375
},
376
}
377
```
0 commit comments