Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/metal-zoos-warn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'storybook-react-context': minor
---

Upgrade to Storybook v10
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ jobs:
run: pnpm build

- name: Test
run: pnpm test
run: pnpm test:headless
2 changes: 1 addition & 1 deletion example/.storybook/main.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { mergeConfig } from 'vite';

import clearCachePlugin from './clearCachePlugin';
import clearCachePlugin from './clearCachePlugin.js';

export default {
stories: ['../**/*.stories.@(js|jsx|ts|tsx)'],
Expand Down
6 changes: 3 additions & 3 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
"storybook-react-context": "workspace:*"
},
"devDependencies": {
"@storybook/react": "^9.1.2",
"@storybook/react-vite": "^9.1.2",
"@storybook/react": "^10.0.8",
"@storybook/react-vite": "^10.0.8",
"http-server": "14.1.1",
"storybook": "^9.1.2",
"storybook": "^10.0.8",
"unocss": "^66.3.3",
"vite": "^7.1.2"
}
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"test": "pnpm build && pnpm test:headless",
"test:chrome": "testcafe chrome test/functional/*.test.js --app 'pnpm --filter react-example serve'",
"test:headless": "testcafe chrome:headless test/functional/*.test.js --app 'pnpm --filter react-example serve'",
"test:chrome": "testcafe chrome test/functional/*.test.js --app 'pnpm --filter react-example serve' --disable-native-automation",
"test:headless": "testcafe chrome:headless test/functional/*.test.js --app 'pnpm --filter react-example serve' --disable-native-automation",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build:lib && changeset publish",
Expand All @@ -34,7 +34,7 @@
"eslint": "^9.33.0",
"eslint-config-flat-gitignore": "^2.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-storybook": "9.1.2",
"eslint-plugin-storybook": "10.0.8",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
Expand All @@ -44,10 +44,10 @@
"typescript-eslint": "^8.39.1"
},
"peerDependencies": {
"@storybook/react": "^9",
"@storybook/react": "^10",
"react": "^19",
"react-dom": "^19",
"storybook": "^9"
"storybook": "^10"
},
"files": [
"dist/**/*",
Expand Down
Loading