/data/train/clojure/5b3e968a622b1e3044e9fdf2bc5ca3e6c13bf082project.clj

https://github.com/aliostad/deep-learning-lang-detection · Clojure · 41 lines · 33 code · 5 blank · 3 comment · 0 complexity · eedd38852cbd8fc61bc2efe1619de65f MD5 · raw file

  1. (defproject com.breezeehr/hitch "0.1.7-SNAPSHOT"
  2. :description "A Clojurescript library designed to manage and cache derived data."
  3. :url "https://github.com/Breezeemr/hitch"
  4. :license {:name "Eclipse Public License"
  5. :url "http://www.eclipse.org/legal/epl-v10.html"}
  6. :scm "https://github.com/Breezeemr/hitch"
  7. :source-paths ["src"]
  8. :java-source-paths ["src-java"]
  9. ;; lein figwheel doesn't do automatic javac; use this alias instead
  10. :aliases {"test-cljs" ["do" "javac," "figwheel"]}
  11. :profiles
  12. {:provided
  13. {:dependencies [[org.clojure/clojure "1.8.0"]
  14. [org.clojure/clojurescript "1.8.51"]]}
  15. :dev
  16. {:dependencies [[com.cemerick/piggieback "0.2.1"] ; needed by figwheel nrepl
  17. [devcards "0.2.3"]]
  18. :plugins [[lein-figwheel "0.5.10"]]
  19. :figwheel {:http-server-root "public"
  20. :nrepl-port 7889
  21. :server-logfile "target/figwheel-logfile.log"}
  22. ;; Target/classes is to ensure HaltException.class is in the classpath
  23. ;; This is needed by halt.cljc at macro-time even though it is not used!
  24. :resource-paths ["dev-resources" "target/devcards" "target/classes"]
  25. :cljsbuild {:builds
  26. [{:id "devcards"
  27. :source-paths ["src" "test"]
  28. :figwheel {:devcards true}
  29. :compiler {:main hitch.test-runner
  30. :asset-path "js/out"
  31. :output-to "target/devcards/public/js/hitch_devcards.js"
  32. :output-dir "target/devcards/public/js/out"
  33. :optimizations :none
  34. :source-map true
  35. :source-map-timestamp false
  36. :cache-analysis false}}]}}})