|
| 1 | +version: 2 |
| 2 | +updates: |
| 3 | + # Root workspace dependencies |
| 4 | + - package-ecosystem: "npm" |
| 5 | + directory: "/" |
| 6 | + schedule: |
| 7 | + interval: "weekly" |
| 8 | + open-pull-requests-limit: 3 |
| 9 | + groups: |
| 10 | + root-dependencies: |
| 11 | + patterns: |
| 12 | + - "*" |
| 13 | + commit-message: |
| 14 | + prefix: "chore(deps):" |
| 15 | + |
| 16 | + # App Builder package |
| 17 | + - package-ecosystem: "npm" |
| 18 | + directory: "/packages/app-builder" |
| 19 | + schedule: |
| 20 | + interval: "weekly" |
| 21 | + open-pull-requests-limit: 3 |
| 22 | + groups: |
| 23 | + app-builder-major: |
| 24 | + update-types: |
| 25 | + - "major" |
| 26 | + app-builder-minor-patch: |
| 27 | + update-types: |
| 28 | + - "minor" |
| 29 | + - "patch" |
| 30 | + commit-message: |
| 31 | + prefix: "chore(app-builder):" |
| 32 | + |
| 33 | + # Marble API package |
| 34 | + - package-ecosystem: "npm" |
| 35 | + directory: "/packages/marble-api" |
| 36 | + schedule: |
| 37 | + interval: "weekly" |
| 38 | + open-pull-requests-limit: 3 |
| 39 | + groups: |
| 40 | + marble-api-dependencies: |
| 41 | + patterns: |
| 42 | + - "*" |
| 43 | + commit-message: |
| 44 | + prefix: "chore(marble-api):" |
| 45 | + |
| 46 | + # Shared package |
| 47 | + - package-ecosystem: "npm" |
| 48 | + directory: "/packages/shared" |
| 49 | + schedule: |
| 50 | + interval: "weekly" |
| 51 | + open-pull-requests-limit: 3 |
| 52 | + groups: |
| 53 | + shared-dependencies: |
| 54 | + patterns: |
| 55 | + - "*" |
| 56 | + commit-message: |
| 57 | + prefix: "chore(shared):" |
| 58 | + |
| 59 | + # Tailwind Preset package |
| 60 | + - package-ecosystem: "npm" |
| 61 | + directory: "/packages/tailwind-preset" |
| 62 | + schedule: |
| 63 | + interval: "weekly" |
| 64 | + open-pull-requests-limit: 3 |
| 65 | + groups: |
| 66 | + tailwind-preset-dependencies: |
| 67 | + patterns: |
| 68 | + - "*" |
| 69 | + commit-message: |
| 70 | + prefix: "chore(tailwind-preset):" |
| 71 | + |
| 72 | + # Tests package |
| 73 | + - package-ecosystem: "npm" |
| 74 | + directory: "/packages/tests" |
| 75 | + schedule: |
| 76 | + interval: "weekly" |
| 77 | + open-pull-requests-limit: 3 |
| 78 | + groups: |
| 79 | + tests-dependencies: |
| 80 | + patterns: |
| 81 | + - "*" |
| 82 | + commit-message: |
| 83 | + prefix: "chore(tests):" |
| 84 | + |
| 85 | + # TypeScript Utils package |
| 86 | + - package-ecosystem: "npm" |
| 87 | + directory: "/packages/typescript-utils" |
| 88 | + schedule: |
| 89 | + interval: "weekly" |
| 90 | + open-pull-requests-limit: 3 |
| 91 | + groups: |
| 92 | + typescript-utils-dependencies: |
| 93 | + patterns: |
| 94 | + - "*" |
| 95 | + commit-message: |
| 96 | + prefix: "chore(typescript-utils):" |
| 97 | + |
| 98 | + # UI Design System package |
| 99 | + - package-ecosystem: "npm" |
| 100 | + directory: "/packages/ui-design-system" |
| 101 | + schedule: |
| 102 | + interval: "weekly" |
| 103 | + open-pull-requests-limit: 3 |
| 104 | + groups: |
| 105 | + ui-design-system-major: |
| 106 | + update-types: |
| 107 | + - "major" |
| 108 | + ui-design-system-minor-patch: |
| 109 | + update-types: |
| 110 | + - "minor" |
| 111 | + - "patch" |
| 112 | + commit-message: |
| 113 | + prefix: "chore(ui-design-system):" |
| 114 | + |
| 115 | + # UI Icons package |
| 116 | + - package-ecosystem: "npm" |
| 117 | + directory: "/packages/ui-icons" |
| 118 | + schedule: |
| 119 | + interval: "weekly" |
| 120 | + open-pull-requests-limit: 3 |
| 121 | + groups: |
| 122 | + ui-icons-dependencies: |
| 123 | + patterns: |
| 124 | + - "*" |
| 125 | + commit-message: |
| 126 | + prefix: "chore(ui-icons):" |
0 commit comments