Skip to content

Commit

Permalink
Merge pull request #20 from pitch-io/fix-test-src-util
Browse files Browse the repository at this point in the history
Fix issue related to namespace symbol generation
  • Loading branch information
jo-sm committed Feb 22, 2023
2 parents 44fe9f4 + 99a5304 commit 5d19b87
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions cljest/Makefile
Expand Up @@ -23,3 +23,6 @@ watch: install

jest-ci: install compile
CI=true ./node_modules/.bin/jest --ci

repl:
clj -J-Dclojure.server.repl="{:port 5678 :accept clojure.core.server/repl}"
2 changes: 1 addition & 1 deletion cljest/release.edn
@@ -1,4 +1,4 @@
{:group-id "com.pitch"
:artifact-id "cljest"
:version "1.0.0-alpha2"
:version "1.0.0-alpha3"
:scm-url "https://github.com/pitch-io/cljest"}
2 changes: 1 addition & 1 deletion cljest/src/cljest/compilation/fs.clj
Expand Up @@ -81,7 +81,7 @@
(->> dir
(clojure.java.io/file)
(file-seq)
(filter #(.isFile %))
(filter #(and (.isFile %) (str/ends-with? % ".cljs")))
(map str)
(map #(str/replace-first % (str dir "/") ""))
(map shadow.cljs.util/filename->ns)
Expand Down

0 comments on commit 5d19b87

Please sign in to comment.