Skip to content

Commit

Permalink
chore: pin dependencies in examples (#709)
Browse files Browse the repository at this point in the history
<!---
☝️ PR title should follow conventional commits
(https://conventionalcommits.org)
-->

### 🔗 Linked issue

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

### ❓ Type of change

<!-- What types of changes does your code introduce? Put an `x` in all
the boxes that apply. -->

- [ ] 📖 Documentation (updates to the documentation or readme)
- [ ] 🐞 Bug fix (a non-breaking change that fixes an issue)
- [ ] 👌 Enhancement (improving an existing functionality)
- [ ] ✨ New feature (a non-breaking change that adds functionality)
- [ ] 🧹 Chore (updates to the build process or auxiliary tools and
libraries)
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to change)

### 📚 Description

<!-- Describe your changes in detail -->
<!-- Why is this change required? What problem does it solve? -->
  • Loading branch information
tobiasdiez authored Jul 13, 2024
1 parent 522f12b commit a361dfb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"eslint.experimental.useFlatConfig": true,
"cSpell.words": ["nuxt", "ofetch", "Pinia", "composables"]
"cSpell.words": ["composables", "dedupe", "nuxt", "ofetch", "Pinia"]
}
10 changes: 5 additions & 5 deletions renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@
':pinDevDependencies',
],
packageRules: [
{
// Pin all docs dependencies following https://docs.renovatebot.com/dependency-pinning/
matchFileNames: ['docs/package.json'],
rangeStrategy: 'pin',
},
{
// Bump all @storybook/* packages so that always the latest version is used
matchPackagePatterns: ['storybook', '@storybook/*'],
groupName: 'storybook packages',
groupSlug: 'storybook',
rangeStrategy: 'bump',
},
{
// Pin all dependencies following https://docs.renovatebot.com/dependency-pinning/
matchFileNames: ['docs/package.json', 'examples/**/package.json'],
rangeStrategy: 'pin',
},
],
postUpdateOptions: [
// Run pnpm dedupe after pnpm-lock.yaml updates
Expand Down

0 comments on commit a361dfb

Please sign in to comment.