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
dcbb37f5
Unverified
Commit
dcbb37f5
authored
Mar 21, 2018
by
yann300
Committed by
GitHub
Mar 21, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #743 from ethereum/remix_debug
Remove style guide from remix-lib
parents
7332814c
4ade2647
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
2 additions
and
50 deletions
+2
-50
config.yml
.circleci/config.yml
+1
-10
index.js
remix-lib/index.js
+0
-8
package.json
remix-lib/package.json
+1
-1
style-guide.js
remix-lib/src/ui/style-guide.js
+0
-0
styleGuideDark.js
remix-lib/src/ui/styleGuideDark.js
+0
-0
theme-chooser.js
remix-lib/src/ui/theme-chooser.js
+0
-31
No files found.
.circleci/config.yml
View file @
dcbb37f5
...
@@ -31,15 +31,6 @@ jobs:
...
@@ -31,15 +31,6 @@ jobs:
-
checkout
-
checkout
-
run
:
cd remix-solidity && npm install && npm test
-
run
:
cd remix-solidity && npm install && npm test
remix-debugger
:
docker
:
-
image
:
circleci/node:7.10
environment
:
working_directory
:
~/repo
steps
:
-
checkout
-
run
:
cd remix-debugger && npm install && npm test
workflows
:
workflows
:
version
:
2
version
:
2
build_all
:
build_all
:
...
@@ -47,4 +38,4 @@ workflows:
...
@@ -47,4 +38,4 @@ workflows:
-
remix-lib
-
remix-lib
-
remix-core
-
remix-core
-
remix-solidity
-
remix-solidity
-
remix-debugger
remix-lib/index.js
View file @
dcbb37f5
...
@@ -12,9 +12,6 @@ var DummyProvider = require('./src/web3Provider/dummyProvider')
...
@@ -12,9 +12,6 @@ var DummyProvider = require('./src/web3Provider/dummyProvider')
var
Web3VMProvider
=
require
(
'./src/web3Provider/web3VmProvider'
)
var
Web3VMProvider
=
require
(
'./src/web3Provider/web3VmProvider'
)
var
AstWalker
=
require
(
'./src/astWalker'
)
var
AstWalker
=
require
(
'./src/astWalker'
)
var
global
=
require
(
'./src/global'
)
var
global
=
require
(
'./src/global'
)
var
styleGuide
=
require
(
'./src/ui/style-guide'
)
var
styleGuideDark
=
require
(
'./src/ui/styleGuideDark'
)
var
themeChooser
=
require
(
'./src/ui/theme-chooser'
)
var
Storage
=
require
(
'./src/storage'
)
var
Storage
=
require
(
'./src/storage'
)
var
EventsDecoder
=
require
(
'./src/execution/eventsDecoder'
)
var
EventsDecoder
=
require
(
'./src/execution/eventsDecoder'
)
...
@@ -54,11 +51,6 @@ function modules () {
...
@@ -54,11 +51,6 @@ function modules () {
util
:
util
,
util
:
util
,
AstWalker
:
AstWalker
,
AstWalker
:
AstWalker
,
global
:
global
,
global
:
global
,
ui
:
{
styleGuide
:
styleGuide
,
styleGuideDark
:
styleGuideDark
,
themeChooser
:
themeChooser
},
execution
:
{
execution
:
{
EventsDecoder
:
EventsDecoder
,
EventsDecoder
:
EventsDecoder
,
txExecution
:
txExecution
,
txExecution
:
txExecution
,
...
...
remix-lib/package.json
View file @
dcbb37f5
{
{
"name"
:
"remix-lib"
,
"name"
:
"remix-lib"
,
"version"
:
"0.2.0"
,
"version"
:
"0.2.0
-alpha.1
"
,
"description"
:
"Ethereum IDE and tools for the web"
,
"description"
:
"Ethereum IDE and tools for the web"
,
"contributors"
:
[
"contributors"
:
[
{
{
...
...
remix-lib/src/ui/style-guide.js
deleted
100644 → 0
View file @
7332814c
This diff is collapsed.
Click to expand it.
remix-lib/src/ui/styleGuideDark.js
deleted
100644 → 0
View file @
7332814c
This diff is collapsed.
Click to expand it.
remix-lib/src/ui/theme-chooser.js
deleted
100644 → 0
View file @
7332814c
// var remixLib = require('remix-lib')
var
styleGuideLight
=
require
(
'./style-guide'
)
var
styleGuideDark
=
require
(
'./styleGuideDark'
)
var
Storage
=
require
(
'../storage'
)
module
.
exports
=
{
chooser
:
function
()
{
var
themeStorage
=
new
Storage
(
'style:'
)
if
(
themeStorage
.
exists
(
'theme'
))
{
if
(
themeStorage
.
get
(
'theme'
)
===
'dark'
)
{
return
styleGuideDark
()
}
else
{
return
styleGuideLight
()
}
}
else
{
return
styleGuideLight
()
}
},
switchTheme
:
function
(
theme
)
{
var
themeStorage
=
new
Storage
(
'style:'
)
themeStorage
.
set
(
'theme'
,
theme
)
if
(
theme
===
'dark'
)
{
return
styleGuideDark
()
}
else
if
(
theme
===
'light'
)
{
return
styleGuideLight
()
}
else
{
return
styleGuideLight
()
}
}
}
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