add breakpoint path remapping to allow debugging meteor apps

pull/152/head
nightwing 2015-07-03 03:09:42 +04:00
rodzic 12d8d0d28a
commit 3111c46e92
2 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -71,7 +71,7 @@
"c9.ide.find": "#35379124ca",
"c9.ide.find.infiles": "#c132ad243c",
"c9.ide.find.replace": "#44772dd796",
"c9.ide.run.debug": "#2bc3f31089",
"c9.ide.run.debug": "#5edf7086bc",
"c9.automate": "#47e2c429c9",
"c9.ide.ace.emmet": "#6dc4585e02",
"c9.ide.ace.gotoline": "#a8ff07c8f4",
@ -102,7 +102,7 @@
"c9.ide.recentfiles": "#7c099abf40",
"c9.ide.remote": "#301d2ab519",
"c9.ide.processlist": "#bc11818bb5",
"c9.ide.run": "#c53178c339",
"c9.ide.run": "#fd32560361",
"c9.ide.run.build": "#0598fff697",
"c9.ide.run.debug.xdebug": "#61dcbd0180",
"c9.ide.save": "#e00549cb0f",

Wyświetl plik

@ -184,6 +184,7 @@ define(function(require, exports, module) {
// Make sure home dir is marked correctly
path = path.replace(reHome, "~");
if (path[0] != "/") path = "/" + path;
fs.stat(path, function(err, stat) {
if (err) {