Fork me on GitHub
#leiningen
<
2016-04-19
>
slester06:04:38

do I need to do anything to make lein 2.6.1 + Java 1.8 + clojure 1.8.0 see .cljc files besides adding it to :source-paths in project.clj? It looks like this person is having the same issue as I am: https://stackoverflow.com/questions/35255367/clojure-not-requiring-a-cljc-file/35257070

tomjack07:04:17

src/clj*/exampleproject/blah.clj*

danielcompton09:04:03

@slester: you’re not using Clojure 1.8 based on that error message

tomjack09:04:53

clojure 1.8 gives that error message for me

danielcompton11:04:10

That suggests it’s not Clojure 1.8 running, as Clojure 1.8’s error message includes something about cljc?

nberger12:04:46

@slester: You can use lein version to see the actual versions (of lein & clojure) being used

ccann15:04:37

Any idea how to include my compiled clojurescript (javascript) when I run lein uberjar? (@anyone)

danielcompton20:04:08

@ccann: specify it’s output path as a :resource-path in your project.clj?

ccann20:04:03

@danielcompton: thanks! I actually switched to using the chestnut framework and it worked out of the box