From 6159a69f7eca1f7f3c84c8455f319f4829e2132c Mon Sep 17 00:00:00 2001 From: silverwind Date: Sun, 23 Apr 2023 23:33:16 +0200 Subject: [PATCH] add config file, exclude semver --- README.md | 2 +- updates.config.js | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 updates.config.js diff --git a/README.md b/README.md index 8429247..b92b939 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ Put a `updates.config.js` or `updates.config.mjs` in the root of your project, u ```js export default { exclude: [ - "versions", + "semver", ], }; ``` diff --git a/updates.config.js b/updates.config.js new file mode 100644 index 0000000..13222ac --- /dev/null +++ b/updates.config.js @@ -0,0 +1,5 @@ +export default { + exclude: [ + "semver", + ], +};