Skip to content

Commit bdf7c70

Browse files
authored
docs(configuration): add snapshot.unmanagedPaths (#7120)
1 parent 9aadb9e commit bdf7c70

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/content/configuration/other-options.mdx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -397,6 +397,7 @@ module.exports = {
397397
snapshot: {
398398
managedPaths: [path.resolve(__dirname, '../node_modules')],
399399
immutablePaths: [],
400+
unmanagedPaths: [],
400401
buildDependencies: {
401402
hash: true,
402403
timestamp: true,
@@ -462,6 +463,16 @@ module.exports = {
462463
};
463464
```
464465

466+
### unmanagedPaths
467+
468+
<Badge text="5.90.0+" />
469+
470+
`(RegExp | string)[]`
471+
472+
An array of paths that are not managed by a package manager and the contents are subject to change.
473+
474+
Make sure to wrap the path in a capture group if you use regular expressions.
475+
465476
### module
466477

467478
`object = {hash boolean = true, timestamp boolean = true}`

0 commit comments

Comments
 (0)