Skip to content

Commit

Permalink
code review
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsonprsousa authored Jan 8, 2024
1 parent 1d15379 commit acdbb86
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/qwik-speak/tools/inline/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -230,15 +230,15 @@ export function qwikSpeakInline(options: QwikSpeakInlineOptions): Plugin {

log.write(`${target}: ` + (input ?? '-') + '\n');

if(missingValues.length > 0) {
log.write("\nNo keys for 'runtimeAssets' necessary.\n");
} else {
if (missingValues.length > 0) {
log.write('\nMissing value for keys:\n');
missingValues.forEach(x => log.write(x + '\n'));
}

log.write("\nMake sure the keys are in 'runtimeAssets':\n");
dynamics.forEach(x => log.write(x + '\n'));
if (dynamics.length > 0) {
log.write("\nMake sure the keys are in 'runtimeAssets':\n");
dynamics.forEach(x => log.write(x + '\n'));
}

log.write((`\nQwik Speak Inline: build ends at ${new Date().toLocaleString()}\n`));

Expand Down

0 comments on commit acdbb86

Please sign in to comment.