Merge pull request #19487 from storybookjs/deprecate/html-endpoint-in-components

remove the html entrypoint of lib/components
This commit is contained in:
Norbert de Langen 2022-10-14 14:25:30 +03:00 committed by GitHub
commit f2199b9875
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 1 additions and 19 deletions

View File

@ -1 +0,0 @@
export * from './dist/html';

View File

@ -1 +0,0 @@
export * from './dist/html';

View File

@ -82,8 +82,7 @@
},
"bundler": {
"entries": [
"./src/index.ts",
"./src/html.tsx"
"./src/index.ts"
],
"platform": "neutral"
},

View File

@ -1,15 +0,0 @@
import { dedent } from 'ts-dedent';
import deprecate from 'util-deprecate';
const deprecatedHtmlEndpoint = deprecate(
() => {},
dedent`
The entry point '@storybook/components/html' is deprecated. Please use '@storybook/components' directly instead.
See https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#deprecated-storybook-components-html-entry-point
`
);
deprecatedHtmlEndpoint();
export * from './typography/DocumentFormatting';
export { components, resetComponents } from './index';