Commit 0b47f4a8 authored by aniket-engg's avatar aniket-engg

extra space removal

parent 30dc5a6f
...@@ -130,7 +130,7 @@ export class Compiler { ...@@ -130,7 +130,7 @@ export class Compiler {
onCompilationFinished (data: CompilationResult, missingInputs?: string[], source?: SourceWithTarget): void { onCompilationFinished (data: CompilationResult, missingInputs?: string[], source?: SourceWithTarget): void {
let noFatalErrors = true // ie warnings are ok let noFatalErrors = true // ie warnings are ok
const checkIfFatalError = (error: CompilationError) => { const checkIfFatalError = (error: CompilationError) => {
// Ignore warnings and the 'Deferred import' error as those are generated by us as a workaround // Ignore warnings and the 'Deferred import' error as those are generated by us as a workaround
const isValidError = (error.message && error.message.includes('Deferred import')) ? false : error.severity !== 'warning' const isValidError = (error.message && error.message.includes('Deferred import')) ? false : error.severity !== 'warning'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment