|
|
|
@ -111,10 +111,10 @@ export class CompileTabLogic { |
|
|
|
|
this.event.emit('removeAnnotations') |
|
|
|
|
this.event.emit('startingCompilation') |
|
|
|
|
if(await this.api.fileExists('remappings.txt')) { |
|
|
|
|
this.api.readFile('remappings.txt').then( remappings => { |
|
|
|
|
this.compiler.set('remappings', remappings.split('\n')) |
|
|
|
|
this.api.readFile('remappings.txt').then(remappings => { |
|
|
|
|
this.compiler.set('remappings', remappings.split('\n').filter(Boolean)) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
} else this.compiler.set('remappings', []) |
|
|
|
|
if (this.configFilePath) { |
|
|
|
|
this.api.readFile(this.configFilePath).then( contentConfig => { |
|
|
|
|
this.compiler.set('configFileContent', contentConfig) |
|
|
|
|