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
8d8d7704
Commit
8d8d7704
authored
Aug 14, 2018
by
serapath
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add console.warn to terminal
parent
49835871
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
package.json
package.json
+2
-2
terminal.js
src/app/panels/terminal.js
+4
-1
No files found.
package.json
View file @
8d8d7704
...
...
@@ -147,7 +147,7 @@
"linkremixcore"
:
"cd node_modules && rm -rf remix-core && ln -s ../remix/remix-core remix-core && cd .."
,
"linkremixlib"
:
"cd node_modules && rm -rf remix-lib && ln -s ../remix/remix-lib remix-lib && cd .."
,
"linkremixsolidity"
:
"cd node_modules && rm -rf remix-solidity && ln -s ../remix/remix-solidity remix-solidity && cd .."
,
"build"
:
"browserify src/index.js -o build/app.js"
,
"build"
:
"browserify src/index.js -o build/app.js
--exclude solc
"
,
"build_debugger"
:
"browserify src/app/debugger/remix-debugger/index.js -o src/app/debugger/remix-debugger/build/app.js"
,
"browsertest"
:
"sleep 5 && npm run nightwatch_local"
,
"csslint"
:
"csslint --ignore=order-alphabetical --errors='errors,duplicate-properties,empty-rules' --exclude-list='assets/css/font-awesome.min.css' assets/css/"
,
...
...
@@ -174,6 +174,6 @@
"start"
:
"npm-run-all -lpr serve watch onchange remixd"
,
"test"
:
"npm run csslint; standard && node test/index.js"
,
"test-browser"
:
"npm-run-all -lpr selenium downloadsolc_root make-mock-compiler serve browsertest"
,
"watch"
:
"watchify src/index.js -dv -p browserify-reload -o build/app.js"
"watch"
:
"watchify src/index.js -dv -p browserify-reload -o build/app.js
--exclude solc
"
}
}
src/app/panels/terminal.js
View file @
8d8d7704
...
...
@@ -73,6 +73,7 @@ class Terminal {
self
.
registerCommand
(
'html'
,
self
.
_blocksRenderer
(
'html'
),
{
activate
:
true
})
self
.
registerCommand
(
'log'
,
self
.
_blocksRenderer
(
'log'
),
{
activate
:
true
})
self
.
registerCommand
(
'info'
,
self
.
_blocksRenderer
(
'info'
),
{
activate
:
true
})
self
.
registerCommand
(
'warn'
,
self
.
_blocksRenderer
(
'warn'
),
{
activate
:
true
})
self
.
registerCommand
(
'error'
,
self
.
_blocksRenderer
(
'error'
),
{
activate
:
true
})
self
.
registerCommand
(
'script'
,
function
execute
(
args
,
scopedCommands
,
append
)
{
var
script
=
String
(
args
[
0
])
...
...
@@ -86,6 +87,7 @@ class Terminal {
self
.
registerFilter
(
'log'
,
basicFilter
)
self
.
registerFilter
(
'info'
,
basicFilter
)
self
.
registerFilter
(
'warn'
,
basicFilter
)
self
.
registerFilter
(
'error'
,
basicFilter
)
self
.
registerFilter
(
'script'
,
basicFilter
)
...
...
@@ -481,7 +483,7 @@ class Terminal {
if
(
args
.
length
)
append
(
args
[
0
])
}
}
mode
=
{
log
:
styles
.
terminal
.
text_RegularLog
,
info
:
styles
.
terminal
.
text_InfoLog
,
error
:
styles
.
terminal
.
text_ErrorLog
}[
mode
]
// defaults
mode
=
{
log
:
styles
.
terminal
.
text_RegularLog
,
info
:
styles
.
terminal
.
text_InfoLog
,
warn
:
'yellow'
,
error
:
styles
.
terminal
.
text_ErrorLog
}[
mode
]
// defaults
if
(
mode
)
{
return
function
logger
(
args
,
scopedCommands
,
append
)
{
var
types
=
args
.
map
(
type
)
...
...
@@ -581,6 +583,7 @@ function domTerminalFeatures (self, scopedCommands) {
console
:
{
log
:
function
()
{
scopedCommands
.
log
.
apply
(
scopedCommands
,
arguments
)
},
info
:
function
()
{
scopedCommands
.
info
.
apply
(
scopedCommands
,
arguments
)
},
warn
:
function
()
{
scopedCommands
.
warn
.
apply
(
scopedCommands
,
arguments
)
},
error
:
function
()
{
scopedCommands
.
error
.
apply
(
scopedCommands
,
arguments
)
}
},
setTimeout
:
(
fn
,
time
)
=>
{
...
...
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