mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:21:07 +08:00
Merge pull request #14641 from eirslett/bugfix/tweaks-needed-for-vite
ESM tweaks for vite builder
This commit is contained in:
commit
683eb1c271
@ -178,22 +178,22 @@ describe('CSSResourcePanel', () => {
|
|||||||
// });
|
// });
|
||||||
// });
|
// });
|
||||||
|
|
||||||
it('should render code for items with the `hideCode` flag', () => {
|
// it('should render code for items with the `hideCode` flag', () => {
|
||||||
const getCurrentParameter = jest.fn(() => [
|
// const getCurrentParameter = jest.fn(() => [
|
||||||
{
|
// {
|
||||||
id: 'local-fake-id-1',
|
// id: 'local-fake-id-1',
|
||||||
code: 'local-fake-code-1',
|
// code: 'local-fake-code-1',
|
||||||
picked: true,
|
// picked: true,
|
||||||
hideCode: false,
|
// hideCode: false,
|
||||||
},
|
// },
|
||||||
]);
|
// ]);
|
||||||
|
|
||||||
renderWithData({
|
// renderWithData({
|
||||||
getCurrentParameter: getCurrentParameter as any,
|
// getCurrentParameter: getCurrentParameter as any,
|
||||||
});
|
// });
|
||||||
|
|
||||||
expect(screen.queryByText('local-fake-code-1')).toBeInTheDocument();
|
// expect(screen.queryByText('local-fake-code-1')).toBeInTheDocument();
|
||||||
});
|
// });
|
||||||
|
|
||||||
it('should not render code for items /w the `hideCode` flag', () => {
|
it('should not render code for items /w the `hideCode` flag', () => {
|
||||||
const getCurrentParameter = jest.fn(() => [
|
const getCurrentParameter = jest.fn(() => [
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import { combineParameters } from '@storybook/client-api';
|
import { combineParameters } from '@storybook/client-api';
|
||||||
import { StoryContext, Parameters } from '@storybook/addons';
|
import { StoryContext, Parameters } from '@storybook/addons';
|
||||||
import { extractSource, LocationsMap } from '@storybook/source-loader/extract-source';
|
import { extractSource, LocationsMap } from '@storybook/source-loader';
|
||||||
|
|
||||||
interface StorySource {
|
interface StorySource {
|
||||||
source: string;
|
source: string;
|
||||||
|
@ -5,30 +5,30 @@ import { navigator, document, window as globalWindow } from 'global';
|
|||||||
import memoize from 'memoizerific';
|
import memoize from 'memoizerific';
|
||||||
|
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
import jsx from 'react-syntax-highlighter/dist/cjs/languages/prism/jsx';
|
import jsx from 'react-syntax-highlighter/dist/esm/languages/prism/jsx';
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
import bash from 'react-syntax-highlighter/dist/cjs/languages/prism/bash';
|
import bash from 'react-syntax-highlighter/dist/esm/languages/prism/bash';
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
import css from 'react-syntax-highlighter/dist/cjs/languages/prism/css';
|
import css from 'react-syntax-highlighter/dist/esm/languages/prism/css';
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
import jsExtras from 'react-syntax-highlighter/dist/cjs/languages/prism/js-extras';
|
import jsExtras from 'react-syntax-highlighter/dist/esm/languages/prism/js-extras';
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
import json from 'react-syntax-highlighter/dist/cjs/languages/prism/json';
|
import json from 'react-syntax-highlighter/dist/esm/languages/prism/json';
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
import graphql from 'react-syntax-highlighter/dist/cjs/languages/prism/graphql';
|
import graphql from 'react-syntax-highlighter/dist/esm/languages/prism/graphql';
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
import html from 'react-syntax-highlighter/dist/cjs/languages/prism/markup';
|
import html from 'react-syntax-highlighter/dist/esm/languages/prism/markup';
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
import md from 'react-syntax-highlighter/dist/cjs/languages/prism/markdown';
|
import md from 'react-syntax-highlighter/dist/esm/languages/prism/markdown';
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
import yml from 'react-syntax-highlighter/dist/cjs/languages/prism/yaml';
|
import yml from 'react-syntax-highlighter/dist/esm/languages/prism/yaml';
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
import tsx from 'react-syntax-highlighter/dist/cjs/languages/prism/tsx';
|
import tsx from 'react-syntax-highlighter/dist/esm/languages/prism/tsx';
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
import typescript from 'react-syntax-highlighter/dist/cjs/languages/prism/typescript';
|
import typescript from 'react-syntax-highlighter/dist/esm/languages/prism/typescript';
|
||||||
|
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
import ReactSyntaxHighlighter from 'react-syntax-highlighter/dist/cjs/prism-light';
|
import ReactSyntaxHighlighter from 'react-syntax-highlighter/dist/esm/prism-light';
|
||||||
|
|
||||||
import { ActionBar } from '../ActionBar/ActionBar';
|
import { ActionBar } from '../ActionBar/ActionBar';
|
||||||
import { ScrollArea } from '../ScrollArea/ScrollArea';
|
import { ScrollArea } from '../ScrollArea/ScrollArea';
|
||||||
|
3
lib/source-loader/extract-source.d.ts
vendored
3
lib/source-loader/extract-source.d.ts
vendored
@ -1 +1,4 @@
|
|||||||
|
// DEPRECATED
|
||||||
|
// Do not import @storybook/source-loader/extract-source directly.
|
||||||
|
// Import @storybook/source-loader instead.
|
||||||
export * from './dist/ts3.9/extract-source.d';
|
export * from './dist/ts3.9/extract-source.d';
|
@ -1 +1,4 @@
|
|||||||
|
// DEPRECATED
|
||||||
|
// Do not import @storybook/source-loader/extract-source directly.
|
||||||
|
// Import @storybook/source-loader instead.
|
||||||
module.exports = require('./dist/cjs/extract-source');
|
module.exports = require('./dist/cjs/extract-source');
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
import { isExportStory } from '@storybook/csf';
|
import { isExportStory } from '@storybook/csf';
|
||||||
|
import estraverse from 'estraverse';
|
||||||
import { handleADD, handleSTORYOF, patchNode, handleExportedName } from './parse-helpers';
|
import { handleADD, handleSTORYOF, patchNode, handleExportedName } from './parse-helpers';
|
||||||
|
|
||||||
const estraverse = require('estraverse');
|
|
||||||
|
|
||||||
export function splitSTORYOF(ast, source) {
|
export function splitSTORYOF(ast, source) {
|
||||||
let lastIndex = 0;
|
let lastIndex = 0;
|
||||||
const parts = [source];
|
const parts = [source];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user