Skip to content

Commit

Permalink
fix: update storybook version to 8.2.7 (#739)
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
To fix warning when starting storybook.
<!-- Describe your changes in detail -->
<!-- Why is this change required? What problem does it solve? -->
  • Loading branch information
tobiasdiez authored Aug 3, 2024
1 parent 1051f8e commit 0a78a27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nuxt-module/src/storybook.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export async function setupStorybook(options: ModuleOptions, nuxt: Nuxt) {
configDir: resolve(projectDir, './.storybook'),
configType: 'DEVELOPMENT',
cache: storybookCache,
packageJson: { version: '8.2.2' },
packageJson: { version: '8.2.7' },
// Don't check for storybook updates (we're using the latest version)
versionUpdates: false,
quiet: options.logLevel < 4, // 4 = debug
Expand Down

0 comments on commit 0a78a27

Please sign in to comment.