ignore some types issues, not generate types for create-storybook

This commit is contained in:
Norbert de Langen 2025-02-03 14:49:02 +01:00
parent 14b609a00d
commit 96c4ab206e
3 changed files with 11 additions and 16 deletions

View File

@ -19,23 +19,12 @@
"author": "Storybook Team",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
".": "./dist/index.js",
"./bin/index.cjs": "./bin/index.cjs",
"./package.json": "./package.json"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/index.d.ts"
]
}
},
"bin": "./bin/index.cjs",
"files": [
"bin/**/*",
@ -86,7 +75,8 @@
],
"formats": [
"node-esm"
]
],
"types": false
},
"gitHead": "e6a7fd8a655c69780bc20b9749c2699e44beae16"
}

View File

@ -61,7 +61,7 @@ const installStorybook = async <Project extends ProjectType>(
skipInstall: options.skipInstall,
};
const language = await detectLanguage(packageManager);
const language = await detectLanguage(packageManager as any);
const pnp = await detectPnp();
const generatorOptions: GeneratorOptions = {
@ -341,7 +341,7 @@ export async function doInitiate(options: CommandOptions): Promise<
}
} else {
try {
projectType = (await detect(packageManager, options)) as ProjectType;
projectType = (await detect(packageManager as any, options)) as ProjectType;
} catch (err) {
done(String(err));
throw new HandledError(err);

View File

@ -26,6 +26,7 @@ type BundlerConfig = {
pre: string;
post: string;
formats: Formats[];
types?: boolean;
};
type PackageJsonWithBundlerConfig = PackageJson & {
bundler: BundlerConfig;
@ -49,6 +50,7 @@ const run = async ({ cwd, flags }: { cwd: string; flags: string[] }) => {
pre,
post,
formats = ['esm', 'cjs'],
types = true,
},
} = (await fs.readJson(join(cwd, 'package.json'))) as PackageJsonWithBundlerConfig;
@ -89,6 +91,7 @@ const run = async ({ cwd, flags }: { cwd: string; flags: string[] }) => {
formats,
entries,
optimized,
types,
});
/* preset files are always CJS only.
@ -245,15 +248,17 @@ async function getDTSConfigs({
formats,
entries,
optimized,
types,
}: {
formats: Formats[];
entries: string[];
optimized: boolean;
types: boolean;
}) {
const tsConfigPath = join(cwd, 'tsconfig.json');
const tsConfigExists = await fs.pathExists(tsConfigPath);
const dtsBuild = optimized && formats[0] && tsConfigExists ? formats[0] : undefined;
const dtsBuild = types && optimized && formats[0] && tsConfigExists ? formats[0] : undefined;
const dtsConfig: DtsConfigSection = {
tsconfig: tsConfigPath,