mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:11:08 +08:00
Merge branch 'next' into tech/vue-e2e-fix
This commit is contained in:
commit
c086831f82
@ -8,7 +8,7 @@ import { globalExternals } from '@fal-works/esbuild-plugin-global-externals';
|
||||
import { pnpPlugin } from '@yarnpkg/esbuild-plugin-pnp';
|
||||
import aliasPlugin from 'esbuild-plugin-alias';
|
||||
|
||||
import { renderHTML } from './utils/template';
|
||||
import { getTemplatePath, renderHTML } from './utils/template';
|
||||
import { definitions } from './utils/globals';
|
||||
import {
|
||||
BuilderBuildResult,
|
||||
@ -28,9 +28,10 @@ export let compilation: Compilation;
|
||||
let asyncIterator: ReturnType<StarterFunction> | ReturnType<BuilderFunction>;
|
||||
|
||||
export const getConfig: ManagerBuilder['getConfig'] = async (options) => {
|
||||
const [addonsEntryPoints, customManagerEntryPoint] = await Promise.all([
|
||||
const [addonsEntryPoints, customManagerEntryPoint, tsconfigPath] = await Promise.all([
|
||||
options.presets.apply('managerEntries', []),
|
||||
safeResolve(join(options.configDir, 'manager')),
|
||||
getTemplatePath('addon.tsconfig.json'),
|
||||
]);
|
||||
|
||||
return {
|
||||
@ -57,6 +58,13 @@ export const getConfig: ManagerBuilder['getConfig'] = async (options) => {
|
||||
minify: false,
|
||||
sourcemap: true,
|
||||
|
||||
jsxFactory: 'React.createElement',
|
||||
jsxFragment: 'React.Fragment',
|
||||
jsx: 'transform',
|
||||
jsxImportSource: 'react',
|
||||
|
||||
tsconfig: tsconfigPath,
|
||||
|
||||
legalComments: 'external',
|
||||
plugins: [
|
||||
aliasPlugin({
|
||||
|
6
code/lib/builder-manager/templates/addon.tsconfig.json
Normal file
6
code/lib/builder-manager/templates/addon.tsconfig.json
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"jsx": "react",
|
||||
"jsxImportSource": "react"
|
||||
}
|
||||
}
|
@ -205,7 +205,7 @@ export async function baseGenerator(
|
||||
: {}),
|
||||
});
|
||||
|
||||
await configurePreview(renderer, options.commonJs);
|
||||
await configurePreview(renderer);
|
||||
|
||||
if (addComponents) {
|
||||
await copyComponents(renderer, language);
|
||||
|
@ -64,9 +64,9 @@ const frameworkToPreviewParts: Partial<Record<SupportedRenderers, any>> = {
|
||||
},
|
||||
};
|
||||
|
||||
export async function configurePreview(framework: SupportedRenderers, commonJs: boolean) {
|
||||
export async function configurePreview(framework: SupportedRenderers) {
|
||||
const { prefix = '', extraParameters = '' } = frameworkToPreviewParts[framework] || {};
|
||||
const previewPath = `./.storybook/preview.${commonJs ? 'cjs' : 'js'}`;
|
||||
const previewPath = `./.storybook/preview.js`;
|
||||
|
||||
// If the framework template included a preview then we have nothing to do
|
||||
if (await fse.pathExists(previewPath)) {
|
||||
|
@ -4,15 +4,14 @@ import path from 'path';
|
||||
import shelljs from 'shelljs';
|
||||
import { dedent } from 'ts-dedent';
|
||||
|
||||
const remove = (regex?: RegExp) => (input: string) =>
|
||||
!(input === 'default' || (regex && regex.test(input)));
|
||||
const remove = () => (input: string) => input !== 'default';
|
||||
|
||||
const location = path.join(__dirname, '..', 'src', 'globals', 'exports.ts');
|
||||
|
||||
const run = async () => {
|
||||
const { values } = await import('../src/globals/runtime');
|
||||
const data = Object.entries(values).reduce<Record<string, string[]>>((acc, [key, value]) => {
|
||||
acc[key] = Object.keys(value).filter(remove(/^__/));
|
||||
acc[key] = Object.keys(value).filter(remove());
|
||||
return acc;
|
||||
}, {});
|
||||
|
||||
|
@ -11,6 +11,7 @@ export default {
|
||||
'PureComponent',
|
||||
'StrictMode',
|
||||
'Suspense',
|
||||
'__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED',
|
||||
'cloneElement',
|
||||
'createContext',
|
||||
'createElement',
|
||||
@ -33,6 +34,7 @@ export default {
|
||||
'version',
|
||||
],
|
||||
'react-dom': [
|
||||
'__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED',
|
||||
'createPortal',
|
||||
'findDOMNode',
|
||||
'flushSync',
|
||||
|
1556
code/yarn.lock
1556
code/yarn.lock
File diff suppressed because it is too large
Load Diff
@ -6,7 +6,7 @@ import { YourComponent } from './YourComponent';
|
||||
//👇 This default export determines where your story goes in the story list
|
||||
export default {
|
||||
/* 👇 The title prop is optional.
|
||||
* See https://storybook.js.org/docs/7.0/eact/configure/overview#configure-story-loading
|
||||
* See https://storybook.js.org/docs/7.0/react/configure/overview#configure-story-loading
|
||||
* to learn how to generate automatic titles
|
||||
*/
|
||||
title: 'YourComponent',
|
||||
|
2020
scripts/yarn.lock
2020
scripts/yarn.lock
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user