]> source.dussan.org Git - gitea.git/commitdiff
Configure pinned JS dependencies via updates.config.js (#29696)
authorsilverwind <me@silverwind.io>
Wed, 13 Mar 2024 08:43:58 +0000 (09:43 +0100)
committerGitHub <noreply@github.com>
Wed, 13 Mar 2024 08:43:58 +0000 (08:43 +0000)
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.

updates.config.js [new file with mode: 0644]

diff --git a/updates.config.js b/updates.config.js
new file mode 100644 (file)
index 0000000..11908de
--- /dev/null
@@ -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
+  ],
+};