mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 09:51:06 +08:00
work on prebundling lib/component
This commit is contained in:
parent
4122076d80
commit
a0be486680
@ -74,7 +74,12 @@ module.exports = {
|
||||
},
|
||||
{
|
||||
// this package uses pre-bundling, dependencies will be bundled, and will be in devDepenencies
|
||||
files: ['**/lib/theming/**/*', '**/lib/router/**/*', '**/lib/ui/**/*'],
|
||||
files: [
|
||||
'**/lib/theming/**/*',
|
||||
'**/lib/router/**/*',
|
||||
'**/lib/ui/**/*',
|
||||
'**/lib/components/**/*',
|
||||
],
|
||||
rules: {
|
||||
'import/no-extraneous-dependencies': 'off',
|
||||
},
|
||||
|
@ -37,20 +37,25 @@
|
||||
"*.d.ts"
|
||||
],
|
||||
"scripts": {
|
||||
"prepare": "node ../../scripts/prepare.js"
|
||||
"prepare": "ts-node ../../scripts/prebundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@popperjs/core": "^2.6.0",
|
||||
"@storybook/client-logger": "6.5.0-alpha.22",
|
||||
"@storybook/csf": "0.0.2--canary.87bc651.0",
|
||||
"@storybook/theming": "6.5.0-alpha.22",
|
||||
"core-js": "^3.8.2",
|
||||
"regenerator-runtime": "^0.13.7"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@popperjs/core": "^2.6.0",
|
||||
"@types/color-convert": "^2.0.0",
|
||||
"@types/overlayscrollbars": "^1.12.0",
|
||||
"@types/react-syntax-highlighter": "11.0.5",
|
||||
"color-convert": "^2.0.1",
|
||||
"core-js": "^3.8.2",
|
||||
"css": "^3.0.0",
|
||||
"fast-deep-equal": "^3.1.3",
|
||||
"global": "^4.4.0",
|
||||
"jest": "^26.6.3",
|
||||
"lodash": "^4.17.21",
|
||||
"markdown-to-jsx": "^7.1.3",
|
||||
"memoizerific": "^1.11.3",
|
||||
@ -62,14 +67,10 @@
|
||||
"react-popper-tooltip": "^3.1.1",
|
||||
"react-syntax-highlighter": "^15.4.5",
|
||||
"react-textarea-autosize": "^8.3.0",
|
||||
"regenerator-runtime": "^0.13.7",
|
||||
"ts-dedent": "^2.0.0",
|
||||
"ts-node": "^10.4.0",
|
||||
"util-deprecate": "^1.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"css": "^3.0.0",
|
||||
"jest": "^26.6.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": "^16.8.0 || ^17.0.0",
|
||||
"react-dom": "^16.8.0 || ^17.0.0"
|
||||
@ -77,6 +78,7 @@
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"bundlerEntrypoint": "./src/index.ts",
|
||||
"gitHead": "fc1a84084556d61fea8bcaa197f7d85f3a9a107d",
|
||||
"sbmodern": "dist/modern/index.js"
|
||||
}
|
||||
|
@ -1,3 +1,6 @@
|
||||
// eslint-disable-next-line @typescript-eslint/triple-slash-reference
|
||||
/// <reference path="./typings.d.ts" />
|
||||
|
||||
import { createElement, forwardRef, ElementType } from 'react';
|
||||
import { components as rawComponents } from './typography/DocumentFormatting';
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user