Skip to content

Commit

Permalink
Fix source paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarzka committed May 26, 2020
1 parent 23e720d commit 0ef4a0f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions project.clj
@@ -1,4 +1,4 @@
(defproject stylefy "2.0.0-beta2"
(defproject stylefy "2.0.0-beta3"
:description "Library for styling UI components"
:url "https://github.com/Jarzka/stylefy"
:dependencies [[org.clojure/clojure "1.9.0"]
Expand All @@ -14,9 +14,9 @@
:codox {:language :clojurescript
:output-path "doc"
:source-paths ["src"]}
:source-paths ["src/clj" "src/cljc"]
:source-paths ["src/clj" "src/cljc" "src/cljs"]
:cljsbuild {:builds [{:id "test"
:source-paths ["src" "test"]
:source-paths ["src/cljs" "src/cljc" "src/clj" "test"]
:compiler {:output-to "target/cljs/test/test.js"
:optimizations :whitespace
:pretty-print true}}
Expand Down

0 comments on commit 0ef4a0f

Please sign in to comment.