Skip to content
Snippets Groups Projects
Commit b0fe58dc authored by Yamagishi Kazutoshi's avatar Yamagishi Kazutoshi Committed by Eugen Rochko
Browse files

Upgrade storybook to v3 (#3558)

parent e07b5785
No related branches found
No related tags found
No related merge requests found
......@@ -111,7 +111,8 @@
"websocket.js": "^0.1.7"
},
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"@storybook/addon-actions": "^3.0.0",
"@storybook/react": "^3.0.0",
"babel-eslint": "^7.2.3",
"chai": "^4.0.1",
"chai-enzyme": "^0.7.1",
......
import { configure, setAddon } from '@kadira/storybook';
import { configure } from '@storybook/react';
import React from 'react';
import { storiesOf, action } from '@kadira/storybook';
import { addLocaleData } from 'react-intl';
import en from 'react-intl/locale-data/en';
import '../app/javascript/styles/application.scss';
......
import React from 'react';
import { List } from 'immutable';
import { action, storiesOf } from '@kadira/storybook';
import { storiesOf } from '@storybook/react';
import { action } from '@storybook/addon-actions';
import AutosuggestTextarea from 'mastodon/components/autosuggest_textarea';
const props = {
......
import React from 'react';
import { action, storiesOf } from '@kadira/storybook';
import { storiesOf } from '@storybook/react';
import { action } from '@storybook/addon-actions';
import Button from 'mastodon/components/button';
storiesOf('Button', module)
......
import React from 'react';
import { storiesOf } from '@kadira/storybook';
import { storiesOf } from '@storybook/react';
import { action } from '@storybook/addon-actions';
import CharacterCounter from 'mastodon/features/compose/components/character_counter';
storiesOf('CharacterCounter', module)
......
import React from 'react';
import { IntlProvider } from 'react-intl';
import { storiesOf } from '@kadira/storybook';
import { storiesOf } from '@storybook/react';
import { action } from '@storybook/addon-actions';
import en from 'mastodon/locales/en.json';
import LoadingIndicator from 'mastodon/components/loading_indicator';
......
......@@ -2,7 +2,7 @@ const path = require('path');
module.exports = {
module: {
loaders: [
rules: [
{
test: /\.(jpg|jpeg|png|gif|svg|eot|ttf|woff|woff2)$/i,
loader: 'url-loader',
......@@ -14,10 +14,8 @@ module.exports = {
],
},
resolve: {
modulesDirectories: [
path.resolve(__dirname, '..', 'storybook'),
path.resolve(__dirname, '..', 'app', 'javascript'),
path.resolve(__dirname, '..', 'node_modules'),
],
alias: {
mastodon: path.resolve(__dirname, '..', 'app', 'javascript', 'mastodon'),
},
},
};
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment