diff options
author | silverwind <me@silverwind.io> | 2024-03-13 09:43:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-13 08:43:58 +0000 |
commit | 9b1a8888fa754676073bc851b783b2b8f1adecfb (patch) | |
tree | 8948fd54f46fb9500f762c051b24f8c02df13777 /updates.config.js | |
parent | 7fd0a5b276aadcf88dcc012fcd364fe160a58810 (diff) | |
download | gitea-9b1a8888fa754676073bc851b783b2b8f1adecfb.tar.gz gitea-9b1a8888fa754676073bc851b783b2b8f1adecfb.zip |
Configure pinned JS dependencies via updates.config.js (#29696)
Split out from https://github.com/go-gitea/gitea/pull/29684. This
configures the [`updates`](https://github.com/silverwind/updates) module
to exclude these modules for reasons stated in the comments.
Diffstat (limited to 'updates.config.js')
-rw-r--r-- | updates.config.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/updates.config.js b/updates.config.js new file mode 100644 index 0000000000..11908dea8e --- /dev/null +++ b/updates.config.js @@ -0,0 +1,6 @@ +export default { + exclude: [ + '@mcaptcha/vanilla-glue', // breaking changes in rc versions need to be handled + 'eslint-plugin-array-func', // need to migrate to eslint flat config first + ], +}; |