Skip to content

Commit

Permalink
chore: pin @storybook/* packages (#785)
Browse files Browse the repository at this point in the history
<!--
☝️ PR title should follow conventional commits
(https://conventionalcommits.org).
In particular, the title should start with one of the following types:

- docs: 📖 Documentation (updates to the documentation or readme)
- fix: 🐞 Bug fix (a non-breaking change that fixes an issue)
- feat: ✨ New feature/enhancement (a non-breaking change that adds
functionality or improves existing one)
- feat!/fix!: ⚠️ Breaking change (fix or feature that would cause
existing functionality to change)
- chore: 🧹 Chore (updates to the build process or auxiliary tools and
libraries)
-->

### 🔗 Linked issue

<!-- If it resolves an open issue, please link the issue here. For
example "Resolves #123" -->

### 📚 Description

Pin all @storybook/* packages because even minor updates can break
things for us.

<!-- Describe your changes in detail -->
<!-- Why is this change required? What problem does it solve? -->
  • Loading branch information
tobiasdiez authored Sep 23, 2024
1 parent 6ef22b6 commit a84cca5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
ignorePaths: ['**/node_modules/**'],
packageRules: [
{
// Bump all @storybook/* packages so that always the latest version is used
// Pin all @storybook/* packages because even minor updates can break things for us
matchPackagePatterns: ['storybook', '@storybook/*'],
groupName: 'storybook packages',
groupSlug: 'storybook',
rangeStrategy: 'bump',
rangeStrategy: 'pin',
},
{
// Pin all dependencies following https://docs.renovatebot.com/dependency-pinning/
// Pin all dependencies (for docs and examples) following https://docs.renovatebot.com/dependency-pinning/
matchFileNames: ['docs/package.json', 'examples/**/package.json'],
rangeStrategy: 'pin',
},
Expand Down

0 comments on commit a84cca5

Please sign in to comment.