-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aa82da4
commit b45900f
Showing
21 changed files
with
4,768 additions
and
6,857 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
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,21 +1,32 @@ | ||
const path = require("path"); | ||
|
||
module.exports = { | ||
core: { | ||
builder: 'webpack5', | ||
}, | ||
const config = { | ||
stories: ["../src/**/*.stories.@(js|ts|jsx|tsx|mdx)"], | ||
addons: [ | ||
"@storybook/addon-essentials", | ||
"@storybook/addon-docs", | ||
"@storybook/addon-controls", | ||
"@storybook/addon-a11y", | ||
"@storybook/addon-mdx-gfm", | ||
], | ||
webpackFinal: async (config, { configType }) => { | ||
webpackFinal: async (config) => { | ||
config.module.rules.push({ | ||
test: /\.scss$/, | ||
use: ["style-loader", "css-loader", "sass-loader"], | ||
include: path.resolve(__dirname, "../"), | ||
}); | ||
return config; | ||
}, | ||
docs: { | ||
autodocs: "tag", | ||
}, | ||
framework: { | ||
name: "@storybook/react-webpack5", | ||
options: {}, | ||
}, | ||
features: { | ||
storyStoreV7: false, | ||
}, | ||
}; | ||
|
||
export default config; |
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
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
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
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,3 +1,3 @@ | ||
{ | ||
"extends": ["github>canonical/renovate-apps"] | ||
"extends": ["github>canonical/vanilla-framework"] | ||
} |
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
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
Oops, something went wrong.