summaryrefslogtreecommitdiffstats
path: root/updates.config.js
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2024-03-13 09:43:58 +0100
committerGitHub <noreply@github.com>2024-03-13 08:43:58 +0000
commit9b1a8888fa754676073bc851b783b2b8f1adecfb (patch)
tree8948fd54f46fb9500f762c051b24f8c02df13777 /updates.config.js
parent7fd0a5b276aadcf88dcc012fcd364fe160a58810 (diff)
downloadgitea-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.js6
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
+ ],
+};