mirror of
https://github.com/mdgriffith/elm-optimize-level-2.git
synced 2024-11-25 22:50:42 +03:00
Throw an error if JS is empty
This commit is contained in:
parent
89100d5ae9
commit
5d43f746a1
@ -87,7 +87,11 @@ export async function run(
|
||||
} else {
|
||||
throw new Error(`Please provide a path to an Elm file.\n${helpInformation}`.trim());
|
||||
}
|
||||
if (jsSource != '') {
|
||||
|
||||
if (jsSource == '') {
|
||||
throw new Error('Target JS file is empty.');
|
||||
}
|
||||
|
||||
const transformed = await Transform.transform(
|
||||
dirname,
|
||||
jsSource,
|
||||
@ -109,5 +113,4 @@ export async function run(
|
||||
log(` ${fileName} ───> ${options.outputFilePath}`);
|
||||
log('');
|
||||
return options.outputFilePath;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user