Skip to content

Commit

Permalink
Merge pull request #232 from storybookjs/231-storybook-8-upgrade
Browse files Browse the repository at this point in the history
Upgrade to Storybook 8
  • Loading branch information
JReinhold committed Mar 14, 2024
2 parents 18bba6b + a463deb commit 6c1c7a6
Show file tree
Hide file tree
Showing 77 changed files with 5,619 additions and 3,413 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check-pushes.yml
Expand Up @@ -8,9 +8,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-ghpages.yml
Expand Up @@ -13,9 +13,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Expand Up @@ -7,15 +7,15 @@ jobs:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Prepare repository
run: git fetch --unshallow --tags

- name: Use Node.js 16.x
uses: actions/setup-node@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 18.x
cache: npm
- name: Install dependencies
run: npm install --ignore-scripts
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -3,6 +3,6 @@
# https://help.github.com/articles/ignoring-files/#create-a-global-gitignore

node_modules

dist
*.log
.env
4 changes: 2 additions & 2 deletions README.md
@@ -1,6 +1,6 @@
<div align="center">

<img src="./packages/assets/logo.png" width="104" alt="logo">
<img src="./packages/examples/assets/logo.png" width="104" alt="logo">
<br/>
<br/>

Expand All @@ -21,7 +21,7 @@ A [Storybook](https://github.com/storybooks/storybook) addon that embed Figma or

## Requirements

- Storybook@>=7.0.0
- Storybook@>=8.0.0 (Version 7 of this addon supports Storybook 7)

This addon should work well with any framework. If you find that the addon does not work, please open an issue.

Expand Down

0 comments on commit 6c1c7a6

Please sign in to comment.