make alias for deploying
This commit is contained in:
parent
dd5620cfec
commit
8d977296d7
1 changed files with 8 additions and 4 deletions
|
|
@ -7,6 +7,8 @@
|
|||
:jvm-opts ["-XX:-OmitStackTraceInFastThrow"] ; this prevents JVM from doing optimizations which can remove stack traces from NPE and other exceptions
|
||||
:source-paths ["src"]
|
||||
:test-paths ["test", "target/test-classes"]
|
||||
:jar-exclusions [#"\.cljx"]
|
||||
:auto-clean false
|
||||
:profiles {:dev {:dependencies
|
||||
[[org.clojure/test.check "0.7.0"]]
|
||||
:plugins
|
||||
|
|
@ -23,7 +25,9 @@
|
|||
{:source-paths ["test"]
|
||||
:output-path "target/test-classes"
|
||||
:rules :cljs}]}
|
||||
}
|
||||
}
|
||||
:aliases {"cleantest" ["do" "clean,"
|
||||
"cljx" "once,"
|
||||
"test"]}}
|
||||
})
|
||||
"test"]
|
||||
"deploy" ["do" "clean," "cljx" "once," "deploy" "clojars"]})
|
||||
|
|
|
|||
Loading…
Reference in a new issue