mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
Merge pull request #20832 from storybookjs/norbert/update-lazy-universal-dotenv
update lazy-universal-dotenv & regen lockfile
This commit is contained in:
commit
7066b425fa
@ -15,7 +15,8 @@ const cssCache = new Map<string, Promise<string>>();
|
||||
export async function getFontFaceDeclarations(options: LoaderOptions) {
|
||||
const { fontFamily, weights, styles, selectedVariableAxes, display, variable } = validateData(
|
||||
options.fontFamily,
|
||||
[options.props]
|
||||
[options.props],
|
||||
null
|
||||
);
|
||||
|
||||
const fontAxes = getFontAxes(fontFamily, weights, styles, selectedVariableAxes);
|
||||
|
@ -1,7 +1,6 @@
|
||||
import type { NpmOptions } from '../NpmOptions';
|
||||
import type { SupportedLanguage, Builder, ProjectType } from '../project_types';
|
||||
import type { JsPackageManager } from '../js-package-manager/JsPackageManager';
|
||||
import { type PackageManagerName } from '../js-package-manager/JsPackageManager';
|
||||
import type { JsPackageManager, PackageManagerName } from '../js-package-manager/JsPackageManager';
|
||||
import type { FrameworkPreviewParts } from './configure';
|
||||
|
||||
export type GeneratorOptions = {
|
||||
|
@ -5,8 +5,7 @@ import { sync as findUpSync } from 'find-up';
|
||||
import { NPMProxy } from './NPMProxy';
|
||||
import { PNPMProxy } from './PNPMProxy';
|
||||
|
||||
import type { JsPackageManager } from './JsPackageManager';
|
||||
import { type PackageManagerName } from './JsPackageManager';
|
||||
import type { JsPackageManager, PackageManagerName } from './JsPackageManager';
|
||||
|
||||
import { Yarn2Proxy } from './Yarn2Proxy';
|
||||
import { Yarn1Proxy } from './Yarn1Proxy';
|
||||
|
@ -59,7 +59,7 @@
|
||||
"fs-extra": "^11.1.0",
|
||||
"glob": "^7.1.6",
|
||||
"handlebars": "^4.7.7",
|
||||
"lazy-universal-dotenv": "^3.0.1",
|
||||
"lazy-universal-dotenv": "^4.0.0",
|
||||
"picomatch": "^2.3.0",
|
||||
"pkg-dir": "^5.0.0",
|
||||
"pretty-hrtime": "^1.0.3",
|
||||
|
@ -29,6 +29,9 @@ jest.mock('fs-extra', () => {
|
||||
pathExists: jest.fn((p: string) => {
|
||||
return false;
|
||||
}),
|
||||
existsSync: jest.fn((p: string) => {
|
||||
return false;
|
||||
}),
|
||||
};
|
||||
});
|
||||
|
||||
|
@ -55,14 +55,14 @@ import * as settings from './modules/settings';
|
||||
import * as releaseNotes from './modules/release-notes';
|
||||
// eslint-disable-next-line import/no-cycle
|
||||
import * as stories from './modules/stories';
|
||||
// eslint-disable-next-line import/no-cycle
|
||||
|
||||
import * as refs from './modules/refs';
|
||||
import * as layout from './modules/layout';
|
||||
import * as shortcuts from './modules/shortcuts';
|
||||
|
||||
import * as url from './modules/url';
|
||||
import * as version from './modules/versions';
|
||||
// eslint-disable-next-line import/no-cycle
|
||||
|
||||
import * as globals from './modules/globals';
|
||||
|
||||
export * from './lib/shortcut';
|
||||
|
@ -33,7 +33,7 @@ import type {
|
||||
} from '@storybook/types';
|
||||
// eslint-disable-next-line import/no-cycle
|
||||
import { getEventMetadata } from '../lib/events';
|
||||
// eslint-disable-next-line import/no-cycle
|
||||
|
||||
import {
|
||||
denormalizeStoryParameters,
|
||||
transformStoryIndexToStoriesHash,
|
||||
|
@ -1,6 +1,6 @@
|
||||
export * from './types';
|
||||
// eslint-disable-next-line import/no-cycle
|
||||
export * from './ArgsTable';
|
||||
// eslint-disable-next-line import/no-cycle
|
||||
|
||||
export * from './TabbedArgsTable';
|
||||
export * from './NoControlsWarning';
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { types, type Addon } from '@storybook/manager-api';
|
||||
import type { API, State } from '@storybook/manager-api';
|
||||
import { types } from '@storybook/manager-api';
|
||||
import type { API, State, Addon } from '@storybook/manager-api';
|
||||
import type { PreviewProps } from './utils/types';
|
||||
|
||||
export const previewProps: PreviewProps = {
|
||||
|
@ -1,7 +1,7 @@
|
||||
import React from 'react';
|
||||
import { IconButton, Icons } from '@storybook/components';
|
||||
import { Consumer, type Combo } from '@storybook/manager-api';
|
||||
import type { Addon } from '@storybook/manager-api';
|
||||
import { Consumer } from '@storybook/manager-api';
|
||||
import type { Addon, Combo } from '@storybook/manager-api';
|
||||
|
||||
const menuMapper = ({ api, state }: Combo) => ({
|
||||
isVisible: state.layout.showPanel,
|
||||
|
@ -2,8 +2,8 @@ import { global } from '@storybook/global';
|
||||
import React from 'react';
|
||||
import copy from 'copy-to-clipboard';
|
||||
import { getStoryHref, IconButton, Icons } from '@storybook/components';
|
||||
import { Consumer, type Combo } from '@storybook/manager-api';
|
||||
import type { Addon } from '@storybook/manager-api';
|
||||
import { Consumer } from '@storybook/manager-api';
|
||||
import type { Addon, Combo } from '@storybook/manager-api';
|
||||
|
||||
const { PREVIEW_URL, document } = global;
|
||||
|
||||
|
@ -1,8 +1,8 @@
|
||||
import { global } from '@storybook/global';
|
||||
import React from 'react';
|
||||
import { getStoryHref, IconButton, Icons } from '@storybook/components';
|
||||
import { Consumer, type Combo } from '@storybook/manager-api';
|
||||
import type { Addon } from '@storybook/manager-api';
|
||||
import { Consumer } from '@storybook/manager-api';
|
||||
import type { Addon, Combo } from '@storybook/manager-api';
|
||||
|
||||
const { PREVIEW_URL } = global;
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
import React from 'react';
|
||||
import { IconButton, Icons, Separator } from '@storybook/components';
|
||||
import { Consumer, type Combo } from '@storybook/manager-api';
|
||||
import type { Addon } from '@storybook/manager-api';
|
||||
import { Consumer } from '@storybook/manager-api';
|
||||
import type { Addon, Combo } from '@storybook/manager-api';
|
||||
|
||||
const menuMapper = ({ api, state }: Combo) => ({
|
||||
isVisible: state.layout.showNav,
|
||||
|
@ -1,8 +1,8 @@
|
||||
import type { ComponentProps } from 'react';
|
||||
import React, { useState } from 'react';
|
||||
import { IconButton, Icons } from '@storybook/components';
|
||||
import { Consumer, type Combo } from '@storybook/manager-api';
|
||||
import type { Addon } from '@storybook/manager-api';
|
||||
import { Consumer } from '@storybook/manager-api';
|
||||
import type { Addon, Combo } from '@storybook/manager-api';
|
||||
import { styled } from '@storybook/theming';
|
||||
import { FORCE_REMOUNT } from '@storybook/core-events';
|
||||
|
||||
|
@ -4,7 +4,7 @@ import React, { useRef } from 'react';
|
||||
// eslint-disable-next-line import/no-cycle
|
||||
import { Ref } from './Refs';
|
||||
import type { CombinedDataset, Selection } from './types';
|
||||
// eslint-disable-next-line import/no-cycle
|
||||
|
||||
import { useHighlighted } from './useHighlighted';
|
||||
import { HighlightStyles } from './HighlightStyles';
|
||||
|
||||
|
@ -10,10 +10,10 @@ import { RefIndicator } from './RefIndicator';
|
||||
// eslint-disable-next-line import/no-cycle
|
||||
import { Tree } from './Tree';
|
||||
import { CollapseIcon } from './TreeNode';
|
||||
// eslint-disable-next-line import/no-cycle
|
||||
|
||||
import { DEFAULT_REF_ID } from './Sidebar';
|
||||
import type { Highlight, RefType } from './types';
|
||||
// eslint-disable-next-line import/no-cycle
|
||||
|
||||
import { getStateType } from './utils';
|
||||
|
||||
export interface RefProps {
|
||||
|
@ -1,3 +1,4 @@
|
||||
/* eslint-disable import/no-cycle */
|
||||
import { useStorybookApi } from '@storybook/manager-api';
|
||||
import { styled } from '@storybook/theming';
|
||||
import { Icons } from '@storybook/components';
|
||||
@ -8,7 +9,6 @@ import Fuse from 'fuse.js';
|
||||
import { global } from '@storybook/global';
|
||||
import React, { useMemo, useRef, useState, useCallback } from 'react';
|
||||
|
||||
// eslint-disable-next-line import/no-cycle
|
||||
import { DEFAULT_REF_ID } from './Sidebar';
|
||||
import type {
|
||||
CombinedDataset,
|
||||
@ -19,7 +19,7 @@ import type {
|
||||
Selection,
|
||||
} from './types';
|
||||
import { isSearchResult, isExpandType, isClearType, isCloseType } from './types';
|
||||
// eslint-disable-next-line import/no-cycle
|
||||
|
||||
import { searchItem } from './utils';
|
||||
|
||||
const { document } = global;
|
||||
|
@ -20,7 +20,7 @@ import type { ExpandAction, ExpandedState } from './useExpanded';
|
||||
// eslint-disable-next-line import/no-cycle
|
||||
import { useExpanded } from './useExpanded';
|
||||
import type { Highlight, Item } from './types';
|
||||
// eslint-disable-next-line import/no-cycle
|
||||
|
||||
import { isStoryHoistable, createId, getAncestorIds, getDescendantIds, getLink } from './utils';
|
||||
|
||||
export const Action = styled.button(({ theme }) => ({
|
||||
|
3442
code/yarn.lock
3442
code/yarn.lock
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user