|
@@ -0,0 +1,86 @@
|
|
|
+(defproject hello "0.1.0-SNAPSHOT"
|
|
|
+ :description "FIXME: write this!"
|
|
|
+ :url "http://example.com/FIXME"
|
|
|
+ :dependencies [[bidi "2.0.16"]
|
|
|
+ [com.cemerick/piggieback "0.2.1"]
|
|
|
+ [com.taoensso/timbre "4.8.0"]
|
|
|
+ [hiccups "0.3.0"]
|
|
|
+ [macchiato/core "0.1.6"]
|
|
|
+ [macchiato/env "0.0.5"]
|
|
|
+ [mount "0.1.11"]
|
|
|
+ [org.clojure/clojure "1.8.0"]
|
|
|
+ [org.clojure/clojurescript "1.9.518"]]
|
|
|
+ :jvm-opts ^:replace ["-Xmx1g" "-server"]
|
|
|
+ :plugins [[lein-doo "0.1.7"]
|
|
|
+ [macchiato/lein-npm "0.6.3"]
|
|
|
+ [lein-figwheel "0.5.10"]
|
|
|
+ [lein-cljsbuild "1.1.5"]]
|
|
|
+ :npm {:dependencies [[pg "6.1.5"]
|
|
|
+ [sequelize "3.30.4"]
|
|
|
+ [source-map-support "0.4.6"]]
|
|
|
+ :write-package-json true}
|
|
|
+ :source-paths ["src" "target/classes"]
|
|
|
+ :clean-targets ["target"]
|
|
|
+ :target-path "target"
|
|
|
+ :profiles
|
|
|
+ {:dev
|
|
|
+ {:npm {:package {:main "target/out/hello.js"
|
|
|
+ :scripts {:start "node target/out/hello.js"}}}
|
|
|
+ :cljsbuild
|
|
|
+ {:builds {:dev
|
|
|
+ {:source-paths ["env/dev" "src"]
|
|
|
+ :figwheel true
|
|
|
+ :compiler {:main hello.app
|
|
|
+ :output-to "target/out/hello.js"
|
|
|
+ :output-dir "target/out"
|
|
|
+ :target :nodejs
|
|
|
+ :optimizations :none
|
|
|
+ :pretty-print true
|
|
|
+ :source-map true
|
|
|
+ :source-map-timestamp false}}}}
|
|
|
+ :figwheel
|
|
|
+ {:http-server-root "public"
|
|
|
+ :nrepl-port 7000
|
|
|
+ :reload-clj-files {:clj false :cljc true}
|
|
|
+ :nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}
|
|
|
+ :source-paths ["env/dev"]
|
|
|
+ :repl-options {:init-ns user}}
|
|
|
+ :test
|
|
|
+ {:cljsbuild
|
|
|
+ {:builds
|
|
|
+ {:test
|
|
|
+ {:source-paths ["env/test" "src" "test"]
|
|
|
+ :compiler {:main hello.app
|
|
|
+ :output-to "target/test/hello.js"
|
|
|
+ :target :nodejs
|
|
|
+ :optimizations :none
|
|
|
+ :pretty-print true
|
|
|
+ :source-map true}}}}
|
|
|
+ :doo {:build "test"}}
|
|
|
+ :release
|
|
|
+ {:npm {:package {:main "target/release/hello.js"
|
|
|
+ :scripts {:start "node target/release/hello.js"}}}
|
|
|
+ :cljsbuild
|
|
|
+ {:builds
|
|
|
+ {:release
|
|
|
+ {:source-paths ["env/prod" "src"]
|
|
|
+ :compiler {:main hello.app
|
|
|
+ :output-to "target/release/hello.js"
|
|
|
+ :language-in :ecmascript5
|
|
|
+ ;:output-dir "target/release"
|
|
|
+ :target :nodejs
|
|
|
+ :optimizations :simple ;:none
|
|
|
+ :pretty-print false}}}}}}
|
|
|
+ :aliases
|
|
|
+ {"build" ["do"
|
|
|
+ ["clean"]
|
|
|
+ ["npm" "install"]
|
|
|
+ ["figwheel" "dev"]]
|
|
|
+ "package" ["do"
|
|
|
+ ["clean"]
|
|
|
+ ["npm" "install"]
|
|
|
+ ["with-profile" "release" "npm" "init" "-y"]
|
|
|
+ ["with-profile" "release" "cljsbuild" "once"]]
|
|
|
+ "test" ["do"
|
|
|
+ ["npm" "install"]
|
|
|
+ ["with-profile" "test" "doo" "node"]]})
|