mirror of
https://github.com/go-gitea/gitea.git
synced 2026-03-29 18:38:27 +02:00
- Update all JS dependencies via `make update-js` - `webpack-cli` 6 to 7: remove `--disable-interpret` from Makefile - Fix lint: remove unnecessary type args, `toThrowError` to `toThrow` - Fix duplicate CSS selector detected by `stylelint` 17.6.0 - Change `updates.config.ts` to use `pin`, needed for `tailwindcss` - Pin `typescript` pending typescript-eslint/typescript-eslint#12123 --------- Co-authored-by: Claude (claude-opus-4-6) <noreply@anthropic.com> Co-authored-by: Giteabot <teabot@gitea.io>
11 lines
409 B
TypeScript
11 lines
409 B
TypeScript
import type {Config} from 'updates';
|
|
|
|
export default {
|
|
pin: {
|
|
'@mcaptcha/vanilla-glue': '^0.1', // breaking changes in rc versions need to be handled
|
|
'cropperjs': '^1', // need to migrate to v2 but v2 is not compatible with v1
|
|
'tailwindcss': '^3', // need to migrate
|
|
'typescript': '^5', // wait on https://github.com/typescript-eslint/typescript-eslint/issues/12123
|
|
},
|
|
} satisfies Config;
|