Skip to content

Commit

Permalink
track-state: Include cljs.core ns info
Browse files Browse the repository at this point in the history
  • Loading branch information
vemv committed Jul 30, 2023
1 parent 4b55ded commit de48df8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

* Bump `suitable` to [0.5.0](https://github.com/clojure-emacs/clj-suitable/blob/v0.5.0/CHANGELOG.md#050-2023-07-28).

### Bugs Fixed

* [CIDER #3385](https://github.com/clojure-emacs/cider/issues/3385): `track-state`: Include `cljs.core` ns info.

## 0.32.0 (2023-07-26)

### New features
Expand Down
2 changes: 1 addition & 1 deletion src/cider/nrepl/middleware/track_state.clj
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@
(cond
(and cljs (not (contains? old-ns-map 'cljs.core)))
(assoc project-ns-map 'cljs.core
(ns-as-map (cljs-ana/find-ns cljs "cljs.core")
(ns-as-map (cljs-ana/find-ns cljs 'cljs.core)
all-namespaces))

;; we have cljs and the cljs core, nothing to do
Expand Down

0 comments on commit de48df8

Please sign in to comment.