We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f55b19b commit d98c00fCopy full SHA for d98c00f
src/main/clojure/cljs/repl/node.clj
@@ -99,7 +99,7 @@
99
(defn- build-process
100
[opts repl-env input-src]
101
(let [xs (cond-> [(get opts :node-command "node")]
102
- (:debug-port repl-env) (conj (str "--debug=" (:debug-port repl-env))))
+ (:debug-port repl-env) (conj (str "--inspect=" (:debug-port repl-env))))
103
proc (-> (ProcessBuilder. (into-array xs)) (.redirectInput input-src))]
104
(when-let [path-fs (:path repl-env)]
105
(.put (.environment proc)
0 commit comments