Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
1dda6a2e
Commit
1dda6a2e
authored
Nov 17, 2020
by
yann300
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
engine-web instead of engine for HostPlugin and ViewPlugin
parent
2992a0f2
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
9 additions
and
10 deletions
+9
-10
panel.js
apps/remix-ide/src/app/components/panel.js
+1
-1
plugin-manager-component.js
.../remix-ide/src/app/components/plugin-manager-component.js
+1
-2
file-panel.js
apps/remix-ide/src/app/panels/file-panel.js
+1
-1
analysis-tab.js
apps/remix-ide/src/app/tabs/analysis-tab.js
+1
-1
compile-tab.js
apps/remix-ide/src/app/tabs/compile-tab.js
+1
-1
debugger-tab.js
apps/remix-ide/src/app/tabs/debugger-tab.js
+1
-1
settings-tab.js
apps/remix-ide/src/app/tabs/settings-tab.js
+1
-1
test-tab.js
apps/remix-ide/src/app/tabs/test-tab.js
+1
-1
landing-page.js
apps/remix-ide/src/app/ui/landing-page/landing-page.js
+1
-1
No files found.
apps/remix-ide/src/app/components/panel.js
View file @
1dda6a2e
import
{
EventEmitter
}
from
'events'
import
{
EventEmitter
}
from
'events'
import
{
HostPlugin
}
from
'@remixproject/engine'
import
{
HostPlugin
}
from
'@remixproject/engine
-web
'
const
csjs
=
require
(
'csjs-inject'
)
const
csjs
=
require
(
'csjs-inject'
)
const
yo
=
require
(
'yo-yo'
)
const
yo
=
require
(
'yo-yo'
)
...
...
apps/remix-ide/src/app/components/plugin-manager-component.js
View file @
1dda6a2e
...
@@ -3,8 +3,7 @@ const yo = require('yo-yo')
...
@@ -3,8 +3,7 @@ const yo = require('yo-yo')
const
csjs
=
require
(
'csjs-inject'
)
const
csjs
=
require
(
'csjs-inject'
)
const
EventEmitter
=
require
(
'events'
)
const
EventEmitter
=
require
(
'events'
)
const
LocalPlugin
=
require
(
'./local-plugin'
)
const
LocalPlugin
=
require
(
'./local-plugin'
)
import
{
IframePlugin
,
WebsocketPlugin
}
from
'@remixproject/engine-web'
import
{
IframePlugin
,
ViewPlugin
,
WebsocketPlugin
}
from
'@remixproject/engine-web'
import
{
ViewPlugin
}
from
'@remixproject/engine'
import
{
PluginManagerSettings
}
from
'./plugin-manager-settings'
import
{
PluginManagerSettings
}
from
'./plugin-manager-settings'
import
*
as
packageJson
from
'../../../../../package.json'
import
*
as
packageJson
from
'../../../../../package.json'
const
addToolTip
=
require
(
'../ui/tooltip'
)
const
addToolTip
=
require
(
'../ui/tooltip'
)
...
...
apps/remix-ide/src/app/panels/file-panel.js
View file @
1dda6a2e
import
{
ViewPlugin
}
from
'@remixproject/engine'
import
{
ViewPlugin
}
from
'@remixproject/engine
-web
'
import
*
as
packageJson
from
'../../../../../package.json'
import
*
as
packageJson
from
'../../../../../package.json'
var
yo
=
require
(
'yo-yo'
)
var
yo
=
require
(
'yo-yo'
)
...
...
apps/remix-ide/src/app/tabs/analysis-tab.js
View file @
1dda6a2e
import
{
ViewPlugin
}
from
'@remixproject/engine'
import
{
ViewPlugin
}
from
'@remixproject/engine
-web
'
import
{
EventEmitter
}
from
'events'
import
{
EventEmitter
}
from
'events'
import
*
as
packageJson
from
'../../../../../package.json'
import
*
as
packageJson
from
'../../../../../package.json'
...
...
apps/remix-ide/src/app/tabs/compile-tab.js
View file @
1dda6a2e
/* global */
/* global */
import
{
ViewPlugin
}
from
'@remixproject/engine'
import
{
ViewPlugin
}
from
'@remixproject/engine
-web
'
import
*
as
packageJson
from
'../../../../../package.json'
import
*
as
packageJson
from
'../../../../../package.json'
import
publishToStorage
from
'../../publishToStorage'
import
publishToStorage
from
'../../publishToStorage'
import
{
compile
}
from
'../compiler/compiler-helpers'
import
{
compile
}
from
'../compiler/compiler-helpers'
...
...
apps/remix-ide/src/app/tabs/debugger-tab.js
View file @
1dda6a2e
import
toaster
from
'../ui/tooltip'
import
toaster
from
'../ui/tooltip'
import
{
DebuggerUI
}
from
'@remix-ui/debugger-ui'
// eslint-disable-line
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
remixDebug
,
{
TransactionDebugger
as
Debugger
}
from
'@remix-project/remix-debug'
import
*
as
packageJson
from
'../../../../../package.json'
import
*
as
packageJson
from
'../../../../../package.json'
import
React
from
'react'
// eslint-disable-line
import
React
from
'react'
// eslint-disable-line
...
...
apps/remix-ide/src/app/tabs/settings-tab.js
View file @
1dda6a2e
import
{
ViewPlugin
}
from
'@remixproject/engine'
import
{
ViewPlugin
}
from
'@remixproject/engine
-web
'
import
*
as
packageJson
from
'../../../../../package.json'
import
*
as
packageJson
from
'../../../../../package.json'
const
yo
=
require
(
'yo-yo'
)
const
yo
=
require
(
'yo-yo'
)
const
globalRegistry
=
require
(
'../../global/registry'
)
const
globalRegistry
=
require
(
'../../global/registry'
)
...
...
apps/remix-ide/src/app/tabs/test-tab.js
View file @
1dda6a2e
import
{
ViewPlugin
}
from
'@remixproject/engine'
import
{
ViewPlugin
}
from
'@remixproject/engine
-web
'
import
{
canUseWorker
,
urlFromVersion
}
from
'../compiler/compiler-utils'
import
{
canUseWorker
,
urlFromVersion
}
from
'../compiler/compiler-utils'
var
yo
=
require
(
'yo-yo'
)
var
yo
=
require
(
'yo-yo'
)
var
async
=
require
(
'async'
)
var
async
=
require
(
'async'
)
...
...
apps/remix-ide/src/app/ui/landing-page/landing-page.js
View file @
1dda6a2e
import
*
as
packageJson
from
'../../../../../../package.json'
import
*
as
packageJson
from
'../../../../../../package.json'
import
{
ViewPlugin
}
from
'@remixproject/engine'
import
{
ViewPlugin
}
from
'@remixproject/engine
-web
'
const
yo
=
require
(
'yo-yo'
)
const
yo
=
require
(
'yo-yo'
)
const
csjs
=
require
(
'csjs-inject'
)
const
csjs
=
require
(
'csjs-inject'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment