Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
adamreisnz authored Aug 4, 2024
1 parent d0b8c0d commit 8d77abc
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -363,11 +363,15 @@ Specify configuration passed to the [glob](https://www.npmjs.com/package/glob) c

```js
const options = {

//Glob settings here (examples given below)
glob: {

//Glob settings here (examples given below)
dot: true, //To include file names starting with a dot
windowsPathsNoEscape: true, //To fix paths on Windows OS when path.join() is used to create paths
//To include hidden files (starting with a dot)
dot: true,

//To fix paths on Windows OS when path.join() is used to create paths
windowsPathsNoEscape: true,
},
}
```
Expand Down

0 comments on commit 8d77abc

Please sign in to comment.