Compare commits
2 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d36b1272ec | ||
|
|
bf3548317e |
2 changed files with 7 additions and 3 deletions
|
|
@ -15,7 +15,8 @@
|
|||
[org.clojure/core.async "0.4.500"]
|
||||
[org.clojure/tools.cli "0.4.2"]
|
||||
[org.clojure/data.csv "0.1.4"]
|
||||
[cheshire "5.9.0"]]
|
||||
[cheshire "5.9.0"]
|
||||
[io.aviso/pretty "0.1.37"]]
|
||||
:profiles {:test {:dependencies [[clj-commons/conch "0.9.2"]]}
|
||||
:uberjar {:global-vars {*assert* false}
|
||||
:jvm-opts ["-Dclojure.compiler.direct-linking=true"
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
(:require
|
||||
[babashka.impl.async :refer [async-namespace]]
|
||||
[babashka.impl.cheshire :refer [cheshire-core-namespace]]
|
||||
[babashka.impl.classpath :as cp]
|
||||
[babashka.impl.clojure.core :refer [core-extras]]
|
||||
[babashka.impl.clojure.java.io :refer [io-namespace]]
|
||||
[babashka.impl.clojure.stacktrace :refer [print-stack-trace]]
|
||||
|
|
@ -13,12 +14,12 @@
|
|||
[babashka.impl.socket-repl :as socket-repl]
|
||||
[babashka.impl.tools.cli :refer [tools-cli-namespace]]
|
||||
[babashka.impl.utils :refer [eval-string]]
|
||||
[babashka.impl.classpath :as cp]
|
||||
[babashka.wait :as wait]
|
||||
[clojure.edn :as edn]
|
||||
[clojure.java.io :as io]
|
||||
[clojure.java.shell :as shell]
|
||||
[clojure.string :as str]
|
||||
[io.aviso.ansi :as ansi]
|
||||
[sci.addons :as addons])
|
||||
(:gen-class))
|
||||
|
||||
|
|
@ -251,7 +252,9 @@ Everything after that is bound to *command-line-args*."))
|
|||
'me.raynes.conch.low-level conch-namespace
|
||||
'clojure.core.async async-namespace
|
||||
'clojure.data.csv csv/csv-namespace
|
||||
'cheshire.core cheshire-core-namespace}
|
||||
'cheshire.core cheshire-core-namespace
|
||||
'io.aviso.ansi {'blue ansi/blue
|
||||
'red ansi/red}}
|
||||
:bindings {'java.lang.System/exit exit ;; override exit, so we have more control
|
||||
'System/exit exit}
|
||||
:env env
|
||||
|
|
|
|||
Loading…
Reference in a new issue