compileNow should not need tag as param

This commit is contained in:
lionel benychou 2018-08-30 12:46:39 +02:00
parent d2dccacce6
commit 7b8d35c96b
3 changed files with 6 additions and 5 deletions

View File

@ -3,7 +3,7 @@ import { start } from '@storybook/core/client';
import './globals';
import riot, { tag2, mount as vendorMount } from 'riot';
import render from './render';
import { compileNow, asCompiledCode } from './compileNow';
import { compileNow as unboundCompileNow, asCompiledCode } from './compileNow';
const { clientApi, configApi, forceReRender } = start(render);
@ -18,4 +18,5 @@ export const {
export const { configure } = configApi;
const mount = vendorMount.bind(riot, '#root');
const compileNow = unboundCompileNow.bind(null, tag2);
export { forceReRender, render, tag2 as tag, mount, compileNow, asCompiledCode };

View File

@ -1,8 +1,8 @@
import { tag, mount, storiesOf, compileNow } from '@storybook/riot';
import { mount, storiesOf, compileNow } from '@storybook/riot';
import { action } from '@storybook/addon-actions';
import ButtonRaw from './Button.txt';
compileNow(tag, ButtonRaw);
compileNow(ButtonRaw);
storiesOf('Addon|Actions', module)
.add('Action only', () =>

View File

@ -1,8 +1,8 @@
import { tag, mount, storiesOf, compileNow } from '@storybook/riot';
import { mount, storiesOf, compileNow } from '@storybook/riot';
import { linkTo } from '@storybook/addon-links';
import ButtonRaw from './Button.txt';
compileNow(tag, ButtonRaw);
compileNow(ButtonRaw);
storiesOf('Addon|Links', module).add('Go to welcome', () =>
mount('my-button', {