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.
snapshot.unmanagedPaths
1 parent 9aadb9e commit bdf7c70Copy full SHA for bdf7c70
src/content/configuration/other-options.mdx
@@ -397,6 +397,7 @@ module.exports = {
397
snapshot: {
398
managedPaths: [path.resolve(__dirname, '../node_modules')],
399
immutablePaths: [],
400
+ unmanagedPaths: [],
401
buildDependencies: {
402
hash: true,
403
timestamp: true,
@@ -462,6 +463,16 @@ module.exports = {
462
463
};
464
```
465
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
476
### module
477
478
`object = {hash boolean = true, timestamp boolean = true}`
0 commit comments