Merge pull request #4299 from ethereum/fixremap

remove empty lines from remappings
pull/5370/head
yann300 12 months ago committed by GitHub
commit 0cd942d038
  1. 6
      libs/remix-ui/solidity-compiler/src/lib/logic/compileTabLogic.ts

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

Loading…
Cancel
Save