Pop-up dictionary browser extension for language learning. Successor to Yomichan. (PERSONAL FORK)
at lambda-fork/main 39 lines 1.1 kB view raw
1version: 2 2updates: 3 - package-ecosystem: "github-actions" 4 directory: "/" 5 schedule: 6 interval: "monthly" 7 labels: 8 - "area/dependencies" 9 groups: # group minor/patch updates together 10 minor: 11 patterns: 12 - "*" 13 update-types: 14 - "minor" 15 - "patch" 16 17 - package-ecosystem: "npm" 18 directory: "/" 19 schedule: 20 interval: "monthly" 21 labels: 22 - "area/dependencies" 23 groups: # group minor/patch updates together 24 minor: 25 patterns: 26 - "*" 27 update-types: 28 - "minor" 29 - "patch" 30 ignore: 31 # These dependencies should be updated manually: 32 - dependency-name: "vitest" 33 # Benchmarking is an experimental feature in vitest: 34 # https://github.com/yomidevs/yomitan/pull/583#issuecomment-1925047371 35 - dependency-name: "@vitest/coverage-v8" 36 # Pinned to stay on the same version as vitest 37 - dependency-name: "@types/node" 38 # Version 20.11.6 introduces an incompatibility with vite: 39 # https://github.com/vitejs/vite/issues/15714