mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:11:06 +08:00
compileNow should not need tag as param
This commit is contained in:
parent
d2dccacce6
commit
7b8d35c96b
@ -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 };
|
||||
|
@ -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', () =>
|
||||
|
@ -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', {
|
||||
|
Loading…
x
Reference in New Issue
Block a user