Skip to content

Commit 8d77abc

Browse files
authored
Update README.md
1 parent d0b8c0d commit 8d77abc

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -363,11 +363,15 @@ Specify configuration passed to the [glob](https://www.npmjs.com/package/glob) c
363363

364364
```js
365365
const options = {
366+
367+
//Glob settings here (examples given below)
366368
glob: {
367369

368-
//Glob settings here (examples given below)
369-
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
370+
//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,
371375
},
372376
}
373377
```

0 commit comments

Comments
 (0)