mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:51:09 +08:00
fix(build-static): do not allow empty string as outputDir option
throws an Error if outputDir is an empty string when calling buildStaticStandalone fix #13860
This commit is contained in:
parent
a0a8d8799d
commit
e5d30106f4
@ -172,6 +172,10 @@ export async function buildStaticStandalone(options: any) {
|
||||
const { staticDir, configDir, packageJson } = options;
|
||||
|
||||
const configType = 'PRODUCTION';
|
||||
|
||||
if (options.outputDir === '')
|
||||
throw new Error("Won't remove current directory. Check your outputDir!");
|
||||
|
||||
const outputDir = path.isAbsolute(options.outputDir)
|
||||
? options.outputDir
|
||||
: path.join(process.cwd(), options.outputDir);
|
||||
|
Loading…
x
Reference in New Issue
Block a user