From a361dfb41108e9ce633a477cbf31efcc9b1ae983 Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Sat, 13 Jul 2024 15:25:12 +0200 Subject: [PATCH] chore: pin dependencies in examples (#709) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ### ๐Ÿ”— Linked issue ### โ“ Type of change - [ ] ๐Ÿ“– 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 --- .vscode/settings.json | 2 +- renovate.json5 | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 59a961be..c3f4ad21 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,4 @@ { "eslint.experimental.useFlatConfig": true, - "cSpell.words": ["nuxt", "ofetch", "Pinia", "composables"] + "cSpell.words": ["composables", "dedupe", "nuxt", "ofetch", "Pinia"] } diff --git a/renovate.json5 b/renovate.json5 index 4bde7a9f..44ba312c 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -12,11 +12,6 @@ ':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/*'], @@ -24,6 +19,11 @@ 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