Skip to content

Commit

Permalink
engine-web instead of engine for HostPlugin and ViewPlugin
Browse files Browse the repository at this point in the history
  • Loading branch information
yann300 committed Nov 17, 2020
1 parent e52e9b6 commit 79efc01
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion apps/remix-ide/src/app/components/panel.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { EventEmitter } from 'events'
import { HostPlugin } from '@remixproject/engine'
import { HostPlugin } from '@remixproject/engine-web'
const csjs = require('csjs-inject')
const yo = require('yo-yo')

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ const yo = require('yo-yo')
const csjs = require('csjs-inject')
const EventEmitter = require('events')
const LocalPlugin = require('./local-plugin')
import { IframePlugin, WebsocketPlugin } from '@remixproject/engine-web'
import { ViewPlugin } from '@remixproject/engine'
import { IframePlugin, ViewPlugin, WebsocketPlugin } from '@remixproject/engine-web'
import { PluginManagerSettings } from './plugin-manager-settings'
import * as packageJson from '../../../../../package.json'
const addToolTip = require('../ui/tooltip')
Expand Down
2 changes: 1 addition & 1 deletion apps/remix-ide/src/app/panels/file-panel.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ViewPlugin } from '@remixproject/engine'
import { ViewPlugin } from '@remixproject/engine-web'

import * as packageJson from '../../../../../package.json'
var yo = require('yo-yo')
Expand Down
2 changes: 1 addition & 1 deletion apps/remix-ide/src/app/tabs/analysis-tab.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ViewPlugin } from '@remixproject/engine'
import { ViewPlugin } from '@remixproject/engine-web'
import { EventEmitter } from 'events'
import * as packageJson from '../../../../../package.json'

Expand Down
2 changes: 1 addition & 1 deletion apps/remix-ide/src/app/tabs/compile-tab.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* global */
import { ViewPlugin } from '@remixproject/engine'
import { ViewPlugin } from '@remixproject/engine-web'
import * as packageJson from '../../../../../package.json'
import publishToStorage from '../../publishToStorage'
import { compile } from '../compiler/compiler-helpers'
Expand Down
2 changes: 1 addition & 1 deletion apps/remix-ide/src/app/tabs/debugger-tab.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import toaster from '../ui/tooltip'
import { DebuggerUI } from '@remix-ui/debugger-ui' // eslint-disable-line
import { ViewPlugin } from '@remixproject/engine'
import { ViewPlugin } from '@remixproject/engine-web'
import remixDebug, { TransactionDebugger as Debugger } from '@remix-project/remix-debug'
import * as packageJson from '../../../../../package.json'
import React from 'react' // eslint-disable-line
Expand Down
2 changes: 1 addition & 1 deletion apps/remix-ide/src/app/tabs/settings-tab.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ViewPlugin } from '@remixproject/engine'
import { ViewPlugin } from '@remixproject/engine-web'
import * as packageJson from '../../../../../package.json'
const yo = require('yo-yo')
const globalRegistry = require('../../global/registry')
Expand Down
2 changes: 1 addition & 1 deletion apps/remix-ide/src/app/tabs/test-tab.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ViewPlugin } from '@remixproject/engine'
import { ViewPlugin } from '@remixproject/engine-web'
import { canUseWorker, urlFromVersion } from '../compiler/compiler-utils'
var yo = require('yo-yo')
var async = require('async')
Expand Down
2 changes: 1 addition & 1 deletion apps/remix-ide/src/app/ui/landing-page/landing-page.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as packageJson from '../../../../../../package.json'
import { ViewPlugin } from '@remixproject/engine'
import { ViewPlugin } from '@remixproject/engine-web'

const yo = require('yo-yo')
const csjs = require('csjs-inject')
Expand Down

0 comments on commit 79efc01

Please sign in to comment.