-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(react): update react storybook to v7.6.7
Install storybook v7.6.7, update scripts, add new Storybook plugin for GitHub-flavoured markdown, fixes to stories . #977
- Loading branch information
1 parent
c053329
commit 5c79039
Showing
6 changed files
with
8,869 additions
and
14,420 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"sourceType": "unambiguous", | ||
"presets": [ | ||
[ | ||
"@babel/preset-env", | ||
{ | ||
"targets": { | ||
"chrome": 100, | ||
"safari": 15, | ||
"firefox": 91 | ||
} | ||
} | ||
], | ||
"@babel/preset-typescript", | ||
"@babel/preset-react" | ||
], | ||
"plugins": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,27 @@ | ||
module.exports = { | ||
"core": { | ||
builder: "webpack5", | ||
disableTelemetry: true, | ||
disableTelemetry: true | ||
}, | ||
|
||
"stories": [ | ||
"../src/**/*.stories.mdx", | ||
"../src/**/*.stories.@(js|jsx|ts|tsx)" | ||
], | ||
|
||
"addons": [ | ||
"@storybook/addon-links", | ||
"@storybook/addon-essentials", | ||
"@storybook/addon-postcss", | ||
"@storybook/addon-a11y", | ||
"@storybook/addon-mdx-gfm" | ||
], | ||
"framework": "@storybook/react" | ||
|
||
"framework": { | ||
name: "@storybook/react-webpack5", | ||
options: {} | ||
}, | ||
|
||
docs: { | ||
autodocs: true | ||
} | ||
} |
Oops, something went wrong.