Skip to content

Commit 049eac8

Browse files
authored
Merge pull request #56 from storybookjs/yann/storybook-10-4-support
add support for Storybook 10.4 alpha
2 parents d46b7f5 + e60b441 commit 049eac8

File tree

3 files changed

+413
-51
lines changed

3 files changed

+413
-51
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ name: Release
22

33
on: [push]
44

5+
permissions:
6+
contents: write
7+
issues: write
8+
pull-requests: write
9+
id-token: write
10+
511
jobs:
612
release:
713
runs-on: ubuntu-latest
@@ -17,13 +23,15 @@ jobs:
1723

1824
- name: Setup Node.js
1925
uses: actions/setup-node@v4
26+
with:
27+
node-version: 24
28+
registry-url: 'https://registry.npmjs.org'
2029

2130
- name: Install dependencies
2231
uses: bahmutov/npm-install@v1
2332

2433
- name: Create Release
2534
env:
2635
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
2836
run: |
2937
yarn release

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,17 @@
5858
"prettier": "^3.6.2",
5959
"react": "^17.0.1",
6060
"react-dom": "^17.0.1",
61-
"storybook": "^10.0.0 || ^10.0.0-0 || ^10.2.0-0 || ^10.3.0-0",
61+
"storybook": "^10.0.0 || ^10.0.0-0 || ^10.2.0-0 || ^10.3.0-0 || ^10.4.0-0",
6262
"tsup": "^8.3.5",
6363
"typescript": "^5.9.3",
6464
"vite": "^7.2.2",
6565
"webpack": "^5.97.1"
6666
},
6767
"packageManager": "yarn@4.5.3",
6868
"publishConfig": {
69-
"access": "public"
69+
"access": "public",
70+
"provenance": true,
71+
"registry": "https://registry.npmjs.org/"
7072
},
7173
"storybook": {
7274
"displayName": "Addon coverage",

0 commit comments

Comments
 (0)