Remove STORYBOOK_REACT_CLASSES and global/globals.ts

This commit is contained in:
Ian VanSchooten 2022-09-29 21:33:02 -04:00
parent b42f0edea7
commit cf7db51915
8 changed files with 3 additions and 26 deletions

View File

@ -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'];

View File

@ -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',

View File

@ -1,5 +0,0 @@
import global from 'global';
const { window: globalWindow } = global;
globalWindow.STORYBOOK_REACT_CLASSES = {};

View File

@ -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 (

View File

@ -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]],
},
],
});

View File

@ -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')]],
},
],
};

View File

@ -3,5 +3,4 @@ import global from 'global';
const { window: globalWindow } = global;
globalWindow.STORYBOOK_REACT_CLASSES = {};
globalWindow.STORYBOOK_ENV = 'vue';

View File

@ -3,5 +3,4 @@ import global from 'global';
const { window: globalWindow } = global;
globalWindow.STORYBOOK_REACT_CLASSES = {};
globalWindow.STORYBOOK_ENV = 'vue3';