mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:01:08 +08:00
Remove STORYBOOK_REACT_CLASSES and global/globals.ts
This commit is contained in:
parent
b42f0edea7
commit
cf7db51915
@ -7,7 +7,6 @@ import loadFramework from '../frameworks/frameworkLoader';
|
||||
import { StoryshotsOptions } from './StoryshotsOptions';
|
||||
|
||||
const { describe, window: globalWindow } = global;
|
||||
global.STORYBOOK_REACT_CLASSES = global.STORYBOOK_REACT_CLASSES || {};
|
||||
|
||||
type TestMethod = 'beforeAll' | 'beforeEach' | 'afterEach' | 'afterAll';
|
||||
const methods: TestMethod[] = ['beforeAll', 'beforeEach', 'afterEach', 'afterAll'];
|
||||
|
@ -786,7 +786,6 @@ const newWebpackConfiguration = (
|
||||
devtool: 'cheap-module-source-map',
|
||||
entry: [
|
||||
'/Users/joe/storybook/lib/core-server/dist/esm/globals/polyfills.js',
|
||||
'/Users/joe/storybook/lib/core-server/dist/esm/globals/globals.js',
|
||||
'/Users/joe/storybook/examples/angular-cli/.storybook/storybook-init-framework-entry.js',
|
||||
'/Users/joe/storybook/addons/docs/dist/esm/frameworks/common/config.js-generated-other-entry.js',
|
||||
'/Users/joe/storybook/addons/docs/dist/esm/frameworks/angular/config.js-generated-other-entry.js',
|
||||
|
@ -1,5 +0,0 @@
|
||||
import global from 'global';
|
||||
|
||||
const { window: globalWindow } = global;
|
||||
|
||||
globalWindow.STORYBOOK_REACT_CLASSES = {};
|
@ -93,7 +93,7 @@ export const previewAnnotations = async (base: any, options: Options) => {
|
||||
|
||||
if (config.length > 0) warnConfigField();
|
||||
|
||||
return [...config, require.resolve('@storybook/core-client/dist/esm/globals/globals'), ...base];
|
||||
return [...config, ...base];
|
||||
};
|
||||
|
||||
export const features = async (
|
||||
|
@ -33,14 +33,7 @@ describe('framework-preset-react-docgen', () => {
|
||||
overrides: [
|
||||
{
|
||||
test: /\.(cjs|mjs|tsx?|jsx?)$/,
|
||||
plugins: [
|
||||
[
|
||||
babelPluginReactDocgenPath,
|
||||
{
|
||||
DOC_GEN_COLLECTION_NAME: 'STORYBOOK_REACT_CLASSES',
|
||||
},
|
||||
],
|
||||
],
|
||||
plugins: [[babelPluginReactDocgenPath]],
|
||||
},
|
||||
],
|
||||
});
|
||||
|
@ -23,14 +23,7 @@ export const babel: StorybookConfig['babel'] = async (config, options) => {
|
||||
...(config?.overrides || []),
|
||||
{
|
||||
test: reactDocgen === 'react-docgen' ? /\.(cjs|mjs|tsx?|jsx?)$/ : /\.(cjs|mjs|jsx?)$/,
|
||||
plugins: [
|
||||
[
|
||||
require.resolve('babel-plugin-react-docgen'),
|
||||
{
|
||||
DOC_GEN_COLLECTION_NAME: 'STORYBOOK_REACT_CLASSES',
|
||||
},
|
||||
],
|
||||
],
|
||||
plugins: [[require.resolve('babel-plugin-react-docgen')]],
|
||||
},
|
||||
],
|
||||
};
|
||||
|
@ -3,5 +3,4 @@ import global from 'global';
|
||||
|
||||
const { window: globalWindow } = global;
|
||||
|
||||
globalWindow.STORYBOOK_REACT_CLASSES = {};
|
||||
globalWindow.STORYBOOK_ENV = 'vue';
|
||||
|
@ -3,5 +3,4 @@ import global from 'global';
|
||||
|
||||
const { window: globalWindow } = global;
|
||||
|
||||
globalWindow.STORYBOOK_REACT_CLASSES = {};
|
||||
globalWindow.STORYBOOK_ENV = 'vue3';
|
||||
|
Loading…
x
Reference in New Issue
Block a user