add config file, exclude semver

This commit is contained in:
silverwind 2023-04-23 23:33:16 +02:00
parent 904c377dd5
commit 6159a69f7e
Signed by: silverwind
GPG Key ID: 2E62B41C93869443
2 changed files with 6 additions and 1 deletions

@ -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",
],
};
```

5
updates.config.js Normal file

@ -0,0 +1,5 @@
export default {
exclude: [
"semver",
],
};