Skip to content

Commit 9a56903

Browse files
committed
change storybook to use our custom webpack config and add vtex-tachyons
1 parent c285fe1 commit 9a56903

File tree

5 files changed

+30
-19
lines changed

5 files changed

+30
-19
lines changed

.storybook/config.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
import 'vtex-tachyons'

.storybook/main.js

+9-17
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,11 @@
1-
module.exports = {
2-
stories: ['../react/components/**/*.stories.(ts|tsx)'],
3-
webpackFinal: async config => {
4-
config.module.rules = [
5-
...config.module.rules,
6-
{
7-
test: /\.(ts|tsx)$/,
8-
loader: require.resolve('babel-loader')
9-
}
10-
]
1+
const path = require('path');
2+
3+
const custom = require('../config/webpack.config.js')
114

12-
config.resolve = {
13-
...config.resolve,
14-
extensions: ['.ts', '.tsx'],
15-
}
16-
17-
return config
18-
},
5+
module.exports = {
6+
stories: ['../react/components/**/*.stories.tsx'],
7+
webpackFinal: (config) => {
8+
config.resolve.extensions.push('.ts', '.tsx')
9+
return { ...config, module: { ...config.module, rules: custom.module.rules } }
10+
}
1911
}

config/webpack.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ module.exports = {
131131
// its runtime that would otherwise processed through "file" loader.
132132
// Also exclude `html` and `json` extensions so they get processed
133133
// by webpacks internal loaders.
134-
exclude: [/\.(js|jsx|mjs|ts|tsx)$/, /\.css$/, /\.html$/, /\.json$/],
134+
exclude: [/\.(js|jsx|mjs|ts|tsx|ejs)$/, /\.css$/, /\.html$/, /\.json$/],
135135
loader: require.resolve('file-loader'),
136136
options: {
137137
name: 'static/media/[name].[hash:8].[ext]',

react/components/Button/button.stories.tsx

+5-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,8 @@ export default {
77
component: Button,
88
}
99

10-
export const Text = () => <Button type="primary">Oie</Button>
10+
export const withText = () => (
11+
<Button type="primary">
12+
With a text
13+
</Button>
14+
)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import React from 'react'
2+
3+
import Tooltip from '.'
4+
5+
export default {
6+
title: 'Tooltip',
7+
component: Tooltip,
8+
}
9+
10+
export const tooltipTop = () => (
11+
<Tooltip label="tooltip text">
12+
<span>oi</span>
13+
</Tooltip>
14+
)

0 commit comments

Comments
 (0)