mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:51:09 +08:00
Update some references to use ESM rather than CJS
This commit is contained in:
parent
bcb1cfdfe6
commit
becc386566
2
addons/links/react.js
vendored
2
addons/links/react.js
vendored
@ -1 +1 @@
|
||||
module.exports = require('./dist/cjs/react');
|
||||
module.exports = require('./dist/esm/react');
|
||||
|
@ -766,8 +766,8 @@ const newWebpackConfiguration = (
|
||||
bail: false,
|
||||
devtool: 'cheap-module-source-map',
|
||||
entry: [
|
||||
'/Users/joe/storybook/lib/core-server/dist/cjs/globals/polyfills.js',
|
||||
'/Users/joe/storybook/lib/core-server/dist/cjs/globals/globals.js',
|
||||
'/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,9 +1,9 @@
|
||||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||
import { drawSelectedElement } from '@storybook/addon-measure/dist/cjs/box-model/visualizer';
|
||||
import { drawSelectedElement } from '@storybook/addon-measure/dist/esm/box-model/visualizer';
|
||||
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||
import { init, destroy } from '@storybook/addon-measure/dist/cjs/box-model/canvas';
|
||||
import { init, destroy } from '@storybook/addon-measure/dist/esm/box-model/canvas';
|
||||
|
||||
export const ShadowRoot = ({ label = 'Hello from shadow DOM', drawMode = 'ROOT' }) => {
|
||||
const ref = React.useRef();
|
||||
|
@ -1,9 +1,9 @@
|
||||
import React, { useEffect, useRef } from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||
import { drawSelectedElement } from '@storybook/addon-measure/dist/cjs/box-model/visualizer';
|
||||
import { drawSelectedElement } from '@storybook/addon-measure/dist/esm/box-model/visualizer';
|
||||
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||
import { init, destroy } from '@storybook/addon-measure/dist/cjs/box-model/canvas';
|
||||
import { init, destroy } from '@storybook/addon-measure/dist/esm/box-model/canvas';
|
||||
|
||||
export const Visualization = ({ render }) => {
|
||||
const element = useRef(null);
|
||||
|
@ -1 +1 @@
|
||||
module.exports = require('./dist/cjs/html');
|
||||
module.exports = require('./dist/esm/html');
|
||||
|
@ -1 +1 @@
|
||||
module.exports = require('./dist/cjs/index');
|
||||
module.exports = require('./dist/esm/index');
|
||||
|
@ -1 +1 @@
|
||||
module.exports = require('./dist/cjs/utils');
|
||||
module.exports = require('./dist/esm/utils');
|
||||
|
@ -1 +1 @@
|
||||
module.exports = require('./dist/cjs/create');
|
||||
module.exports = require('./dist/esm/create');
|
||||
|
Loading…
x
Reference in New Issue
Block a user