-
Notifications
You must be signed in to change notification settings - Fork 7
fix: Simplify Dependabot config to fix Yarn 4 workspace incompatibility #729
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,61 +9,18 @@ updates: | |
| interval: 'weekly' | ||
| day: 'monday' | ||
| time: '06:00' # UTC | ||
| target-branch: 'main' | ||
| versioning-strategy: 'increase-if-necessary' | ||
| open-pull-requests-limit: 10 | ||
| groups: | ||
| vite: | ||
| # Group all Vite-related dependencies | ||
| patterns: | ||
| - 'vite' | ||
| - 'vite-*' | ||
| - 'vitest' | ||
| - '@vitest/*' | ||
| - '@vitejs/*' | ||
| - 'jsdom' | ||
| metamask: | ||
| # Group MetaMask packages excluding ESLint configs | ||
| patterns: | ||
| - '@metamask/*' | ||
| exclude-patterns: | ||
| - '@metamask/eslint-*' | ||
| metamask-eslint: | ||
| # Separate group for MetaMask ESLint configs | ||
| patterns: | ||
| - '@metamask/eslint-*' | ||
| agoric: | ||
| # Group Agoric and Endo packages | ||
| patterns: | ||
| - '@agoric/*' | ||
| - '@endo/*' | ||
| - 'ses' | ||
| react: | ||
| # Group React and its type definitions | ||
| patterns: | ||
| - 'react' | ||
| - 'react-dom' | ||
| - '@types/react' | ||
| - '@types/react-dom' | ||
| linting-and-typing: | ||
| # Group ESLint, TypeScript, and related packages | ||
| patterns: | ||
| - 'eslint' | ||
| - 'eslint-*' | ||
| - '@typescript-eslint/*' | ||
| - 'typescript' | ||
| - 'typescript-*' | ||
| prettier: | ||
| # Group Prettier and its plugins | ||
| patterns: | ||
| - 'prettier' | ||
| - 'prettier-*' | ||
| testing-library: | ||
| # Group Testing Library packages | ||
| patterns: | ||
| - '@testing-library/*' | ||
| playwright: | ||
| # Group Playwright packages | ||
| patterns: | ||
| - '@playwright/*' | ||
| - 'playwright' | ||
| # Allow specific high-value dependency groups | ||
| allow: | ||
| - dependency-name: '@metamask/*' | ||
| - dependency-name: '@agoric/*' | ||
| - dependency-name: '@endo/*' | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Package
|
||
|
|
||
| - package-ecosystem: 'github-actions' | ||
| directory: '/' | ||
| schedule: | ||
| interval: 'weekly' | ||
| day: 'monday' | ||
| time: '06:00' # UTC | ||
| open-pull-requests-limit: 10 | ||
Uh oh!
There was an error while loading. Please reload this page.