fixing merge conflicts

pull/1342/head
davidzagi93@gmail.com 3 years ago
commit fc705f3a85
  1. 4
      apps/solidity-compiler/src/app/compiler-api.ts
  2. 3
      nx.json

@ -1,12 +1,13 @@
import { compile } from '@remix-project/remix-solidity' import { compile } from '@remix-project/remix-solidity'
import { CompileTabLogic, parseContracts } from '@remix-ui/solidity-compiler' // eslint-disable-line import { CompileTabLogic, parseContracts } from '@remix-ui/solidity-compiler' // eslint-disable-line
import type { ConfigurationSettings } from '@remix-project/remix-lib-ts' import type { ConfigurationSettings } from '@remix-project/remix-lib-ts' // eslint-disable-line
export const CompilerApiMixin = (Base) => class extends Base { export const CompilerApiMixin = (Base) => class extends Base {
currentFile: string currentFile: string
contractMap: { contractMap: {
file: string file: string
} | Record<string, any> } | Record<string, any>
compileErrors: any compileErrors: any
compileTabLogic: CompileTabLogic compileTabLogic: CompileTabLogic
contractsDetails: Record<string, any> contractsDetails: Record<string, any>
@ -282,7 +283,6 @@ export const CompilerApiMixin = (Base) => class extends Base {
} }
} }
this.on('themeModule', 'themeChanged', this.data.eventHandlers.onThemeChanged) this.on('themeModule', 'themeChanged', this.data.eventHandlers.onThemeChanged)
// Run the compiler instead of trying to save the website // Run the compiler instead of trying to save the website
this.data.eventHandlers.onKeyDown = (e) => { this.data.eventHandlers.onKeyDown = (e) => {
// ctrl+s or command+s // ctrl+s or command+s

@ -124,6 +124,9 @@
"remix-ui-terminal": { "remix-ui-terminal": {
"tags": [] "tags": []
}, },
"solidity-compiler": {
"tags": []
},
"solidity-compiler": { "solidity-compiler": {
"tags": [] "tags": []
} }

Loading…
Cancel
Save