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.

(cherry picked from commit 9b1a8888fa754676073bc851b783b2b8f1adecfb)
This commit is contained in:
silverwind 2024-03-13 09:43:58 +01:00 committed by Earl Warren
parent d9103449b3
commit e2abfdc3a4
No known key found for this signature in database
GPG Key ID: 0579CB2928A78A00
1 changed files with 6 additions and 0 deletions

6
updates.config.js Normal file
View File

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