Skip to content
This repository was archived by the owner on Oct 21, 2022. It is now read-only.

Commit cdc3e4f

Browse files
Support (and depend on) CLJS 2202
Fixes LightTable/LightTable#1397
1 parent 7cdae68 commit cdc3e4f

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
#Changes
22

3+
##unreleased
4+
5+
* UPDATE: ClojureScript 2202
6+
37
##0.0.10
48

59
* FIX: disconnecting from a remote nrepl caused issues

lein-light-nrepl/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
[ibdknox/analyzer "0.0.2"]
1212
[clj-stacktrace "0.2.7"]
1313
[fs "1.3.3"]
14-
[org.clojure/clojurescript "0.0-2173"
14+
[org.clojure/clojurescript "0.0-2202"
1515
:exclusions [org.apache.ant/ant]]
1616
[com.cemerick/pomegranate "0.2.0"]
1717
[clojure-complete "0.2.3"]

lein-light-nrepl/src/lighttable/nrepl/cljs.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
[cljs.source-map :as sm]
1313
[cljs.env :as cljs-env :refer [with-compiler-env]]
1414
[clojure.test :as test]
15-
[cljs.closure :as cljsc]
15+
[cljs.js-deps :refer [js-dependency-index]]
1616
[clojure.java.io :as io]
1717
[cljs.tagged-literals :as tags]
1818
[clojure.set :as set :refer [difference union intersection]]
@@ -185,7 +185,7 @@
185185
{(-> dep :name) dep}))
186186

187187
(defn js-dep [{:keys [ns]}]
188-
(when-let [dep (get (cljsc/js-dependency-index {}) (str ns))]
188+
(when-let [dep (get (js-dependency-index {}) (str ns))]
189189
(let [deps (:requires dep)
190190
deps (if (not= ns 'goog)
191191
(conj deps 'goog)

0 commit comments

Comments
 (0)