version 0.1.3
This commit is contained in:
Родитель
1e2b66fc70
Коммит
4b315f73e9
|
@ -1,3 +1,7 @@
|
|||
v0.1.3
|
||||
|
||||
* reverted websocket library to 1.3.53
|
||||
|
||||
v0.1.2
|
||||
|
||||
* option to save changes from liveEdit
|
||||
|
|
|
@ -265,22 +265,22 @@ exports.create = function (conn, debuggerPort, config) {
|
|||
});
|
||||
debug.on('error', function (e) {
|
||||
sendEvent('showPanel', { name: 'console' });
|
||||
var err = e.toString(),
|
||||
data = {
|
||||
messageObj:{
|
||||
source: 3,
|
||||
type: 0,
|
||||
level: 3,
|
||||
line: 0,
|
||||
url: '',
|
||||
groupLevel: 7,
|
||||
repeatCount: 1,
|
||||
message: err
|
||||
}
|
||||
};
|
||||
var err = e.toString(), data;
|
||||
if (err.match(/ECONNREFUSED/)) {
|
||||
err += "\nIs node running with --debug on port "+ debuggerPort +"?"
|
||||
}
|
||||
data = {
|
||||
messageObj:{
|
||||
source: 3,
|
||||
type: 0,
|
||||
level: 3,
|
||||
line: 0,
|
||||
url: '',
|
||||
groupLevel: 7,
|
||||
repeatCount: 1,
|
||||
message: err
|
||||
}
|
||||
};
|
||||
sendEvent('addConsoleMessage', data);
|
||||
});
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "node-inspector",
|
||||
"version": "0.1.2",
|
||||
"version": "0.1.3",
|
||||
"description": "Web Inspector based nodeJS debugger",
|
||||
"homepage": "http://github.com/dannycoates/node-inspector",
|
||||
"author": "Danny Coates <dannycoates@gmail.com>",
|
||||
|
|
Загрузка…
Ссылка в новой задаче