updates 14.3.4 → 14.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -3
- package/bin/updates.js +27 -24
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -34,15 +34,16 @@ Put a `updates.config.js` or `updates.config.mjs` in the root of your project, u
|
|
|
34
34
|
export default {
|
|
35
35
|
exclude: [
|
|
36
36
|
"semver",
|
|
37
|
+
/^react/,
|
|
37
38
|
],
|
|
38
39
|
};
|
|
39
40
|
```
|
|
40
41
|
|
|
41
42
|
### Config File Options
|
|
42
43
|
|
|
43
|
-
- `include` *Array
|
|
44
|
-
- `exclude` *Array
|
|
45
|
-
- `types` *Array
|
|
44
|
+
- `include` *Array[String|Regexp]*: Array of dependencies to include
|
|
45
|
+
- `exclude` *Array[String|Regexp]*: Array of dependencies to exclude
|
|
46
|
+
- `types` *Array[String]*: Array of dependency types
|
|
46
47
|
- `registry` *String*: URL to npm registry
|
|
47
48
|
|
|
48
49
|
© [silverwind](https://github.com/silverwind), distributed under BSD licence
|