mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:11:20 +08:00
fix #18791 and take PackageJson type from an upstream package
This commit is contained in:
parent
82cf379dd4
commit
76292e7192
@ -3,6 +3,7 @@ import type { TransformOptions } from '@babel/core';
|
||||
import { Router } from 'express';
|
||||
import { Server } from 'http';
|
||||
import type { Parameters } from '@storybook/csf';
|
||||
import type { PackageJson } from 'read-pkg-up';
|
||||
import type { FileSystemCache } from './utils/file-cache';
|
||||
|
||||
/**
|
||||
@ -109,18 +110,7 @@ export interface BuilderResult {
|
||||
stats?: Stats;
|
||||
}
|
||||
|
||||
// TODO: this is a generic interface that we can share across multiple SB packages (like @storybook/cli)
|
||||
export interface PackageJson {
|
||||
name: string;
|
||||
version: string;
|
||||
dependencies?: Record<string, string>;
|
||||
devDependencies?: Record<string, string>;
|
||||
peerDependencies?: Record<string, string>;
|
||||
scripts?: Record<string, string>;
|
||||
eslintConfig?: Record<string, any>;
|
||||
type?: 'module';
|
||||
[key: string]: any;
|
||||
}
|
||||
export { PackageJson };
|
||||
|
||||
// TODO: This could be exported to the outside world and used in `options.ts` file of each `@storybook/APP`
|
||||
// like it's described in docs/api/new-frameworks.md
|
||||
|
@ -195,7 +195,7 @@ export const getStorybookMetadata = async (_configDir?: string) => {
|
||||
return cachedMetadata;
|
||||
}
|
||||
|
||||
const { packageJson = {} as PackageJson } = readPkgUp.sync({ cwd: process.cwd() }) || {};
|
||||
const { packageJson = {} } = readPkgUp.sync({ cwd: process.cwd(), normalize: false }) || {};
|
||||
const configDir =
|
||||
(_configDir ||
|
||||
(getStorybookConfiguration(
|
||||
|
Loading…
x
Reference in New Issue
Block a user