mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:21:17 +08:00
final cleanup
This commit is contained in:
parent
ac31f4b14e
commit
e09e9b488a
@ -16,22 +16,7 @@ const external = [
|
||||
...nodeInternals,
|
||||
'typescript',
|
||||
'@storybook/core',
|
||||
'@storybook/core/dist/builder-manager',
|
||||
'@storybook/core/dist/channels',
|
||||
'@storybook/core/dist/client-logger',
|
||||
'@storybook/core/dist/common',
|
||||
'@storybook/core/dist/components',
|
||||
'@storybook/core/dist/core-events',
|
||||
'@storybook/core/dist/core-server',
|
||||
'@storybook/core/dist/csf-tools',
|
||||
'@storybook/core/dist/docs-tools',
|
||||
'@storybook/core/dist/manager-api',
|
||||
'@storybook/core/dist/node-logger',
|
||||
'@storybook/core/dist/preview-api',
|
||||
'@storybook/core/dist/router',
|
||||
'@storybook/core/dist/telemetry',
|
||||
'@storybook/core/dist/theming',
|
||||
'@storybook/core/dist/types',
|
||||
|
||||
'@storybook/core/builder-manager',
|
||||
'@storybook/core/channels',
|
||||
'@storybook/core/client-logger',
|
||||
|
@ -123,7 +123,6 @@ async function generateExportsFile(prettierConfig: prettier.Options | null): Pro
|
||||
drop: ['console'],
|
||||
outfile: l,
|
||||
alias: {
|
||||
'@storybook/core/dist': join(import.meta.dirname, '..', '..', 'src'),
|
||||
'@storybook/core': join(import.meta.dirname, '..', '..', 'src'),
|
||||
},
|
||||
legalComments: 'none',
|
||||
|
@ -193,7 +193,6 @@ async function generateDistFiles() {
|
||||
assert: require.resolve('browser-assert'),
|
||||
util: require.resolve('util/util.js'),
|
||||
'@storybook/core': join(cwd, 'src'),
|
||||
'@storybook/core/dist': join(cwd, 'src'),
|
||||
react: dirname(require.resolve('react/package.json')),
|
||||
'react-dom': dirname(require.resolve('react-dom/package.json')),
|
||||
},
|
||||
@ -221,7 +220,6 @@ async function generateDistFiles() {
|
||||
},
|
||||
plugins: [globalExternals(globalsModuleInfoMap)],
|
||||
alias: {
|
||||
'@storybook/core/dist': join(cwd, 'src'),
|
||||
'@storybook/core': join(cwd, 'src'),
|
||||
react: dirname(require.resolve('react/package.json')),
|
||||
'react-dom/client': join(
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { global as globalThis } from '@storybook/global';
|
||||
import type { PartialStoryFn, PlayFunctionContext, StoryContext } from '@storybook/core/dist/types';
|
||||
import type { PartialStoryFn, PlayFunctionContext, StoryContext } from '@storybook/core/types';
|
||||
import { within, expect } from '@storybook/test';
|
||||
|
||||
const arrows = {
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { global as globalThis } from '@storybook/global';
|
||||
import type { PartialStoryFn, PlayFunctionContext, StoryContext } from '@storybook/core/dist/types';
|
||||
import type { PartialStoryFn, PlayFunctionContext, StoryContext } from '@storybook/core/types';
|
||||
import { expect, within } from '@storybook/test';
|
||||
|
||||
export default {
|
||||
|
@ -1,12 +1,12 @@
|
||||
import { global as globalThis } from '@storybook/global';
|
||||
import type { PartialStoryFn, PlayFunctionContext, StoryContext } from '@storybook/core/dist/types';
|
||||
import type { PartialStoryFn, PlayFunctionContext, StoryContext } from '@storybook/core/types';
|
||||
import { within, expect } from '@storybook/test';
|
||||
import pick from 'lodash/pick';
|
||||
import {
|
||||
STORY_ARGS_UPDATED,
|
||||
UPDATE_STORY_ARGS,
|
||||
RESET_STORY_ARGS,
|
||||
} from '@storybook/core/dist/core-events';
|
||||
} from '@storybook/core/core-events';
|
||||
|
||||
export default {
|
||||
component: globalThis.Components.Pre,
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { global as globalThis } from '@storybook/global';
|
||||
import { expect } from '@storybook/test';
|
||||
import type { PlayFunctionContext } from '@storybook/core/dist/types';
|
||||
import type { PlayFunctionContext } from '@storybook/core/types';
|
||||
|
||||
export default {
|
||||
component: globalThis.Components.Pre,
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { global as globalThis } from '@storybook/global';
|
||||
import type { PartialStoryFn, PlayFunctionContext, StoryContext } from '@storybook/core/dist/types';
|
||||
import type { PartialStoryFn, PlayFunctionContext, StoryContext } from '@storybook/core/types';
|
||||
import { within, expect } from '@storybook/test';
|
||||
|
||||
export default {
|
||||
|
@ -4,14 +4,14 @@ import type {
|
||||
PartialStoryFn,
|
||||
PlayFunctionContext,
|
||||
StoryContext,
|
||||
} from '@storybook/core/dist/types';
|
||||
} from '@storybook/core/types';
|
||||
import { within, expect } from '@storybook/test';
|
||||
import { useEffect } from '@storybook/core/dist/preview-api';
|
||||
import { useEffect } from '@storybook/core/preview-api';
|
||||
import {
|
||||
STORY_ARGS_UPDATED,
|
||||
UPDATE_STORY_ARGS,
|
||||
RESET_STORY_ARGS,
|
||||
} from '@storybook/core/dist/core-events';
|
||||
} from '@storybook/core/core-events';
|
||||
|
||||
export default {
|
||||
component: globalThis.Components.Pre,
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { global as globalThis } from '@storybook/global';
|
||||
import type { PartialStoryFn, PlayFunctionContext, StoryContext } from '@storybook/core/dist/types';
|
||||
import type { PartialStoryFn, PlayFunctionContext, StoryContext } from '@storybook/core/types';
|
||||
import { within, expect } from '@storybook/test';
|
||||
|
||||
export default {
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { global as globalThis } from '@storybook/global';
|
||||
import type { PartialStoryFn, PlayFunctionContext } from '@storybook/core/dist/types';
|
||||
import { useEffect, useState } from '@storybook/core/dist/preview-api';
|
||||
import type { PartialStoryFn, PlayFunctionContext } from '@storybook/core/types';
|
||||
import { useEffect, useState } from '@storybook/core/preview-api';
|
||||
import { within, userEvent } from '@storybook/test';
|
||||
|
||||
export default {
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { expect } from '@storybook/test';
|
||||
import { global as globalThis } from '@storybook/global';
|
||||
import type { PlayFunctionContext } from '@storybook/core/dist/types';
|
||||
import type { PlayFunctionContext } from '@storybook/core/types';
|
||||
|
||||
export default {
|
||||
component: globalThis.Components.Pre,
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { global as globalThis } from '@storybook/global';
|
||||
import type { PartialStoryFn, PlayFunctionContext, StoryContext } from '@storybook/core/dist/types';
|
||||
import type { PartialStoryFn, PlayFunctionContext, StoryContext } from '@storybook/core/types';
|
||||
import { within, expect } from '@storybook/test';
|
||||
|
||||
export default {
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { global as globalThis } from '@storybook/global';
|
||||
import { expect } from '@storybook/test';
|
||||
import type { PlayFunctionContext } from '@storybook/core/dist/types';
|
||||
import type { PlayFunctionContext } from '@storybook/core/types';
|
||||
|
||||
export default {
|
||||
component: globalThis.Components.Pre,
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { global as globalThis } from '@storybook/global';
|
||||
import type { PartialStoryFn, PlayFunctionContext, StoryContext } from '@storybook/core/dist/types';
|
||||
import type { PartialStoryFn, PlayFunctionContext, StoryContext } from '@storybook/core/types';
|
||||
import { within, expect } from '@storybook/test';
|
||||
|
||||
export default {
|
||||
|
@ -1,4 +1,4 @@
|
||||
import type { PartialStoryFn, StoryContext } from '@storybook/core/dist/types';
|
||||
import type { PartialStoryFn, StoryContext } from '@storybook/core/types';
|
||||
|
||||
export const parameters = {
|
||||
projectParameter: 'projectParameter',
|
||||
|
@ -1,12 +1,12 @@
|
||||
import { global as globalThis } from '@storybook/global';
|
||||
import type { PlayFunctionContext } from '@storybook/core/dist/types';
|
||||
import type { PlayFunctionContext } from '@storybook/core/types';
|
||||
import { within, waitFor, expect } from '@storybook/test';
|
||||
import {
|
||||
FORCE_REMOUNT,
|
||||
RESET_STORY_ARGS,
|
||||
STORY_ARGS_UPDATED,
|
||||
UPDATE_STORY_ARGS,
|
||||
} from '@storybook/core/dist/core-events';
|
||||
} from '@storybook/core/core-events';
|
||||
|
||||
export default {
|
||||
component: globalThis.Components.Button,
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { global as globalThis } from '@storybook/global';
|
||||
import { userEvent, within, expect, fn } from '@storybook/test';
|
||||
import { PREVIEW_KEYDOWN } from '@storybook/core/dist/core-events';
|
||||
import { PREVIEW_KEYDOWN } from '@storybook/core/core-events';
|
||||
import type { PlayFunctionContext } from '@storybook/csf';
|
||||
|
||||
export default {
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { global as globalThis } from '@storybook/global';
|
||||
import type { PartialStoryFn, PlayFunctionContext, StoryContext } from '@storybook/core/dist/types';
|
||||
import type { PartialStoryFn, PlayFunctionContext, StoryContext } from '@storybook/core/types';
|
||||
import { within, expect } from '@storybook/test';
|
||||
|
||||
export default {
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { global as globalThis } from '@storybook/global';
|
||||
import type { PartialStoryFn, PlayFunctionContext, StoryContext } from '@storybook/core/dist/types';
|
||||
import type { PartialStoryFn, PlayFunctionContext, StoryContext } from '@storybook/core/types';
|
||||
import { within, expect } from '@storybook/test';
|
||||
|
||||
export default {
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { global as globalThis } from '@storybook/global';
|
||||
import type { PartialStoryFn, PlayFunctionContext, StoryContext } from '@storybook/core/dist/types';
|
||||
import type { PartialStoryFn, PlayFunctionContext, StoryContext } from '@storybook/core/types';
|
||||
import { within, expect } from '@storybook/test';
|
||||
|
||||
export default {
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { global as globalThis } from '@storybook/global';
|
||||
import { expect } from '@storybook/test';
|
||||
import type { PlayFunctionContext } from '@storybook/core/dist/types';
|
||||
import type { PlayFunctionContext } from '@storybook/core/types';
|
||||
|
||||
export default {
|
||||
component: globalThis.Components.Pre,
|
||||
|
4
code/deprecated/builder-manager/shim.d.ts
vendored
4
code/deprecated/builder-manager/shim.d.ts
vendored
@ -1,2 +1,2 @@
|
||||
export * from '@storybook/core/dist/builder-manager';
|
||||
export type * from '@storybook/core/dist/builder-manager';
|
||||
export * from '@storybook/core/builder-manager';
|
||||
export type * from '@storybook/core/builder-manager';
|
||||
|
@ -1 +1 @@
|
||||
module.exports = require('@storybook/core/dist/builder-manager');
|
||||
module.exports = require('@storybook/core/builder-manager');
|
||||
|
@ -1 +1 @@
|
||||
export * from '@storybook/core/dist/builder-manager';
|
||||
export * from '@storybook/core/builder-manager';
|
||||
|
4
code/deprecated/channels/shim.d.ts
vendored
4
code/deprecated/channels/shim.d.ts
vendored
@ -1,2 +1,2 @@
|
||||
export * from '@storybook/core/dist/channels';
|
||||
export type * from '@storybook/core/dist/channels';
|
||||
export * from '@storybook/core/channels';
|
||||
export type * from '@storybook/core/channels';
|
||||
|
@ -1 +1 @@
|
||||
module.exports = require('@storybook/core/dist/channels');
|
||||
module.exports = require('@storybook/core/channels');
|
||||
|
@ -1 +1 @@
|
||||
export * from '@storybook/core/dist/channels';
|
||||
export * from '@storybook/core/channels';
|
||||
|
4
code/deprecated/client-logger/shim.d.ts
vendored
4
code/deprecated/client-logger/shim.d.ts
vendored
@ -1,2 +1,2 @@
|
||||
export * from '@storybook/core/dist/core-events';
|
||||
export type * from '@storybook/core/dist/core-events';
|
||||
export * from '@storybook/core/core-events';
|
||||
export type * from '@storybook/core/core-events';
|
||||
|
@ -1 +1 @@
|
||||
module.exports = require('@storybook/core/dist/client-logger');
|
||||
module.exports = require('@storybook/core/client-logger');
|
||||
|
@ -1 +1 @@
|
||||
export * from '@storybook/core/dist/client-logger';
|
||||
export * from '@storybook/core/client-logger';
|
||||
|
4
code/deprecated/components/shim.d.ts
vendored
4
code/deprecated/components/shim.d.ts
vendored
@ -1,2 +1,2 @@
|
||||
export * from '@storybook/core/dist/components';
|
||||
export type * from '@storybook/core/dist/components';
|
||||
export * from '@storybook/core/components';
|
||||
export type * from '@storybook/core/components';
|
||||
|
@ -1 +1 @@
|
||||
module.exports = require('@storybook/core/dist/components');
|
||||
module.exports = require('@storybook/core/components');
|
||||
|
@ -1 +1 @@
|
||||
export * from '@storybook/core/dist/components';
|
||||
export * from '@storybook/core/components';
|
||||
|
4
code/deprecated/core-common/shim.d.ts
vendored
4
code/deprecated/core-common/shim.d.ts
vendored
@ -1,2 +1,2 @@
|
||||
export * from '@storybook/core/dist/common';
|
||||
export type * from '@storybook/core/dist/common';
|
||||
export * from '@storybook/core/common';
|
||||
export type * from '@storybook/core/common';
|
||||
|
@ -1 +1 @@
|
||||
module.exports = require('@storybook/core/dist/common');
|
||||
module.exports = require('@storybook/core/common');
|
||||
|
@ -1 +1 @@
|
||||
export * from '@storybook/core/dist/common';
|
||||
export * from '@storybook/core/common';
|
||||
|
@ -1,2 +1,2 @@
|
||||
export * from '@storybook/core/dist/manager-errors';
|
||||
export type * from '@storybook/core/dist/manager-errors';
|
||||
export * from '@storybook/core/manager-errors';
|
||||
export type * from '@storybook/core/manager-errors';
|
||||
|
@ -3,4 +3,4 @@
|
||||
// An error like this will occur:
|
||||
// ENOENT: no such file or directory, open '/xyz/node_modules/@storybook/core-events/manager-errors.js'
|
||||
// https://github.com/storybookjs/storybook/pull/24038#issuecomment-1704684432
|
||||
module.exports = require('@storybook/core/dist/manager-errors');
|
||||
module.exports = require('@storybook/core/manager-errors');
|
||||
|
@ -1 +1 @@
|
||||
export * from '@storybook/core/dist/manager-errors';
|
||||
export * from '@storybook/core/manager-errors';
|
||||
|
@ -1,2 +1,2 @@
|
||||
export * from '@storybook/core/dist/preview-errors';
|
||||
export type * from '@storybook/core/dist/preview-errors';
|
||||
export * from '@storybook/core/preview-errors';
|
||||
export type * from '@storybook/core/preview-errors';
|
||||
|
@ -3,4 +3,4 @@
|
||||
// An error like this will occur:
|
||||
// ENOENT: no such file or directory, open '/xyz/node_modules/@storybook/core-events/preview-errors.js'
|
||||
// https://github.com/storybookjs/storybook/pull/24038#issuecomment-1704684432
|
||||
module.exports = require('@storybook/core/dist/preview-errors');
|
||||
module.exports = require('@storybook/core/preview-errors');
|
||||
|
@ -1 +1 @@
|
||||
export * from '@storybook/core/dist/preview-errors';
|
||||
export * from '@storybook/core/preview-errors';
|
||||
|
@ -1,2 +1,2 @@
|
||||
export * from '@storybook/core/dist/server-errors';
|
||||
export type * from '@storybook/core/dist/server-errors';
|
||||
export * from '@storybook/core/server-errors';
|
||||
export type * from '@storybook/core/server-errors';
|
||||
|
@ -3,4 +3,4 @@
|
||||
// An error like this will occur:
|
||||
// ENOENT: no such file or directory, open '/xyz/node_modules/@storybook/core-events/server-errors.js'
|
||||
// https://github.com/storybookjs/storybook/pull/24038#issuecomment-1704684432
|
||||
module.exports = require('@storybook/core/dist/server-errors');
|
||||
module.exports = require('@storybook/core/server-errors');
|
||||
|
@ -1 +1 @@
|
||||
export * from '@storybook/core/dist/server-errors';
|
||||
export * from '@storybook/core/server-errors';
|
||||
|
4
code/deprecated/core-events/shim.d.ts
vendored
4
code/deprecated/core-events/shim.d.ts
vendored
@ -1,2 +1,2 @@
|
||||
export * from '@storybook/core/dist/core-events';
|
||||
export type * from '@storybook/core/dist/core-events';
|
||||
export * from '@storybook/core/core-events';
|
||||
export type * from '@storybook/core/core-events';
|
||||
|
@ -1 +1 @@
|
||||
module.exports = require('@storybook/core/dist/core-events');
|
||||
module.exports = require('@storybook/core/core-events');
|
||||
|
@ -1 +1 @@
|
||||
export * from '@storybook/core/dist/core-events';
|
||||
export * from '@storybook/core/core-events';
|
||||
|
4
code/deprecated/core-server/shim.d.ts
vendored
4
code/deprecated/core-server/shim.d.ts
vendored
@ -1,2 +1,2 @@
|
||||
export * from '@storybook/core/dist/core-server';
|
||||
export type * from '@storybook/core/dist/core-server';
|
||||
export * from '@storybook/core/core-server';
|
||||
export type * from '@storybook/core/core-server';
|
||||
|
@ -1 +1 @@
|
||||
module.exports = require('@storybook/core/dist/core-server');
|
||||
module.exports = require('@storybook/core/core-server');
|
||||
|
@ -1 +1 @@
|
||||
export * from '@storybook/core/dist/core-server';
|
||||
export * from '@storybook/core/core-server';
|
||||
|
4
code/deprecated/csf-tools/shim.d.ts
vendored
4
code/deprecated/csf-tools/shim.d.ts
vendored
@ -1,2 +1,2 @@
|
||||
export * from '@storybook/core/dist/csf-tools';
|
||||
export type * from '@storybook/core/dist/csf-tools';
|
||||
export * from '@storybook/core/csf-tools';
|
||||
export type * from '@storybook/core/csf-tools';
|
||||
|
@ -1 +1 @@
|
||||
module.exports = require('@storybook/core/dist/csf-tools');
|
||||
module.exports = require('@storybook/core/csf-tools');
|
||||
|
@ -1 +1 @@
|
||||
export * from '@storybook/core/dist/csf-tools';
|
||||
export * from '@storybook/core/csf-tools';
|
||||
|
4
code/deprecated/docs-tools/shim.d.ts
vendored
4
code/deprecated/docs-tools/shim.d.ts
vendored
@ -1,2 +1,2 @@
|
||||
export * from '@storybook/core/dist/docs-tools';
|
||||
export type * from '@storybook/core/dist/docs-tools';
|
||||
export * from '@storybook/core/docs-tools';
|
||||
export type * from '@storybook/core/docs-tools';
|
||||
|
@ -1 +1 @@
|
||||
module.exports = require('@storybook/core/dist/docs-tools');
|
||||
module.exports = require('@storybook/core/docs-tools');
|
||||
|
4
code/deprecated/manager-api/shim.d.ts
vendored
4
code/deprecated/manager-api/shim.d.ts
vendored
@ -1,2 +1,2 @@
|
||||
export * from '@storybook/core/dist/manager-api';
|
||||
export type * from '@storybook/core/dist/manager-api';
|
||||
export * from '@storybook/core/manager-api';
|
||||
export type * from '@storybook/core/manager-api';
|
||||
|
@ -1 +1 @@
|
||||
module.exports = require('@storybook/core/dist/manager-api');
|
||||
module.exports = require('@storybook/core/manager-api');
|
||||
|
@ -1 +1 @@
|
||||
export * from '@storybook/core/dist/manager-api';
|
||||
export * from '@storybook/core/manager-api';
|
||||
|
4
code/deprecated/node-logger/shim.d.ts
vendored
4
code/deprecated/node-logger/shim.d.ts
vendored
@ -1,2 +1,2 @@
|
||||
export * from '@storybook/core/dist/node-logger';
|
||||
export type * from '@storybook/core/dist/node-logger';
|
||||
export * from '@storybook/core/node-logger';
|
||||
export type * from '@storybook/core/node-logger';
|
||||
|
@ -1 +1 @@
|
||||
module.exports = require('@storybook/core/dist/node-logger');
|
||||
module.exports = require('@storybook/core/node-logger');
|
||||
|
4
code/deprecated/preview-api/shim.d.ts
vendored
4
code/deprecated/preview-api/shim.d.ts
vendored
@ -1,2 +1,2 @@
|
||||
export * from '@storybook/core/dist/preview-api';
|
||||
export type * from '@storybook/core/dist/preview-api';
|
||||
export * from '@storybook/core/preview-api';
|
||||
export type * from '@storybook/core/preview-api';
|
||||
|
@ -1 +1 @@
|
||||
module.exports = require('@storybook/core/dist/preview-api');
|
||||
module.exports = require('@storybook/core/preview-api');
|
||||
|
@ -1 +1 @@
|
||||
export * from '@storybook/core/dist/preview-api';
|
||||
export * from '@storybook/core/preview-api';
|
||||
|
4
code/deprecated/router/shim.d.ts
vendored
4
code/deprecated/router/shim.d.ts
vendored
@ -1,2 +1,2 @@
|
||||
export * from '@storybook/core/dist/theming';
|
||||
export type * from '@storybook/core/dist/theming';
|
||||
export * from '@storybook/core/theming';
|
||||
export type * from '@storybook/core/theming';
|
||||
|
@ -1 +1 @@
|
||||
module.exports = require('@storybook/core/dist/router');
|
||||
module.exports = require('@storybook/core/router');
|
||||
|
@ -1 +1 @@
|
||||
export * from '@storybook/core/dist/router';
|
||||
export * from '@storybook/core/router';
|
||||
|
@ -1 +1 @@
|
||||
export * from '@storybook/core/dist/router';
|
||||
export * from '@storybook/core/router';
|
||||
|
4
code/deprecated/telemetry/shim.d.ts
vendored
4
code/deprecated/telemetry/shim.d.ts
vendored
@ -1,2 +1,2 @@
|
||||
export * from '@storybook/core/dist/telemetry';
|
||||
export type * from '@storybook/core/dist/telemetry';
|
||||
export * from '@storybook/core/telemetry';
|
||||
export type * from '@storybook/core/telemetry';
|
||||
|
@ -1 +1 @@
|
||||
module.exports = require('@storybook/core/dist/telemetry');
|
||||
module.exports = require('@storybook/core/telemetry');
|
||||
|
@ -1 +1 @@
|
||||
export * from '@storybook/core/dist/telemetry';
|
||||
export * from '@storybook/core/telemetry';
|
||||
|
4
code/deprecated/theming/create.d.ts
vendored
4
code/deprecated/theming/create.d.ts
vendored
@ -1,2 +1,2 @@
|
||||
export * from '@storybook/core/dist/theming/create';
|
||||
export type * from '@storybook/core/dist/theming/create';
|
||||
export * from '@storybook/core/theming/create';
|
||||
export type * from '@storybook/core/theming/create';
|
||||
|
@ -1 +1 @@
|
||||
module.exports = require('@storybook/core/dist/theming/create');
|
||||
module.exports = require('@storybook/core/theming/create');
|
||||
|
@ -1 +1 @@
|
||||
export * from '@storybook/core/dist/theming/create';
|
||||
export * from '@storybook/core/theming/create';
|
||||
|
4
code/deprecated/theming/shim.d.ts
vendored
4
code/deprecated/theming/shim.d.ts
vendored
@ -1,2 +1,2 @@
|
||||
export * from '@storybook/core/dist/theming';
|
||||
export type * from '@storybook/core/dist/theming';
|
||||
export * from '@storybook/core/theming';
|
||||
export type * from '@storybook/core/theming';
|
||||
|
@ -1 +1 @@
|
||||
module.exports = require('@storybook/core/dist/theming');
|
||||
module.exports = require('@storybook/core/theming');
|
||||
|
@ -1 +1 @@
|
||||
export * from '@storybook/core/dist/theming';
|
||||
export * from '@storybook/core/theming';
|
||||
|
4
code/deprecated/types/shim.d.ts
vendored
4
code/deprecated/types/shim.d.ts
vendored
@ -1,2 +1,2 @@
|
||||
export * from '@storybook/core/dist/types';
|
||||
export type * from '@storybook/core/dist/types';
|
||||
export * from '@storybook/core/types';
|
||||
export type * from '@storybook/core/types';
|
||||
|
@ -1 +1 @@
|
||||
module.exports = require('@storybook/core/dist/types');
|
||||
module.exports = require('@storybook/core/types');
|
||||
|
@ -1 +1 @@
|
||||
export * from '@storybook/core/dist/types';
|
||||
export * from '@storybook/core/types';
|
||||
|
Loading…
x
Reference in New Issue
Block a user