mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 14:01:16 +08:00
Avoid forcing CJS import from core/client
This commit is contained in:
parent
bcea8018c4
commit
e957ea220a
@ -1,6 +1,6 @@
|
||||
/* eslint-disable prefer-destructuring */
|
||||
import type { ClientStoryApi, Loadable } from '@storybook/addons';
|
||||
import { start } from '@storybook/core/client';
|
||||
import { start } from '@storybook/core';
|
||||
import './globals';
|
||||
import { renderToDOM, render } from './render';
|
||||
import decorateStory from './decorateStory';
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { start } from '@storybook/core/client';
|
||||
import { start } from '@storybook/core';
|
||||
|
||||
import './globals';
|
||||
import { renderToDOM } from './render';
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* eslint-disable prefer-destructuring */
|
||||
import { start } from '@storybook/core/client';
|
||||
import { start } from '@storybook/core';
|
||||
import type { ClientStoryApi, Loadable } from '@storybook/addons';
|
||||
import { HtmlFramework } from './types-6-0';
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* eslint-disable prefer-destructuring */
|
||||
import { start } from '@storybook/core/client';
|
||||
import { start } from '@storybook/core';
|
||||
import type { ClientStoryApi, Loadable } from '@storybook/addons';
|
||||
|
||||
import './globals';
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* eslint-disable prefer-destructuring */
|
||||
import { start } from '@storybook/core/client';
|
||||
import { start } from '@storybook/core';
|
||||
import { ClientStoryApi, Loadable } from '@storybook/addons';
|
||||
|
||||
import './globals';
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { start } from '@storybook/core/client';
|
||||
import { start } from '@storybook/core';
|
||||
import type { ClientStoryApi, Loadable } from '@storybook/addons';
|
||||
|
||||
import './globals';
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { start } from '@storybook/core/client';
|
||||
import { start } from '@storybook/core';
|
||||
import { decorateStory } from './decorators';
|
||||
|
||||
import './globals';
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* eslint-disable prefer-destructuring */
|
||||
import { start } from '@storybook/core/client';
|
||||
import { start } from '@storybook/core';
|
||||
import type { ClientStoryApi, Loadable } from '@storybook/addons';
|
||||
|
||||
import './globals';
|
||||
|
@ -1,5 +1,5 @@
|
||||
import type { App } from 'vue';
|
||||
import { start } from '@storybook/core/client';
|
||||
import { start } from '@storybook/core';
|
||||
import type { ClientStoryApi, Loadable } from '@storybook/addons';
|
||||
|
||||
import './globals';
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* eslint-disable prefer-destructuring */
|
||||
import { start } from '@storybook/core/client';
|
||||
import { start } from '@storybook/core';
|
||||
import type { ClientStoryApi, Loadable } from '@storybook/addons';
|
||||
|
||||
import './globals';
|
||||
|
@ -1,7 +1,7 @@
|
||||
```ts
|
||||
// your-framework/src/client/preview/index.ts
|
||||
|
||||
import { start } from '@storybook/core/client';
|
||||
import { start } from '@storybook/core';
|
||||
|
||||
import './globals';
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user