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:
Oscar Dominguez 2021-02-20 02:22:41 +01:00
parent a0a8d8799d
commit e5d30106f4

View File

@ -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);