Skip to content

Commit

Permalink
Rename bb.cli nses
Browse files Browse the repository at this point in the history
  • Loading branch information
eval committed Apr 29, 2024
1 parent 47cf5c7 commit e4a25db
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
com.bhauman/rebel-readline {:local/root "./vendor/rebel-readline/rebel-readline"}
org.clojure/tools.gitlibs {:mvn/version "2.5.197"}
cider/orchard {:mvn/version "0.22.0"}
deps-try/cli {:local/root "./vendor/deps-try.cli"}
deps-try/http-client {:local/root "./vendor/deps-try.http-client"}
borkdude/edamame {:mvn/version "1.4.24"}
org.babashka/cli {:mvn/version "0.7.53"}
com.github.strojure/ansi-escape {:mvn/version "1.0.2-08"}
io.github.eval/compliment {:git/sha "9e15f01eead254f28b7c484c54dd19bfdd6be16d"}
org.clojure/clojure {:mvn/version "1.12.0-alpha10"}}
Expand Down
2 changes: 1 addition & 1 deletion src/eval/deps_try.clj
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
eval.deps-try.util/pred-> clojure.core/->}}}
(:require
[babashka.classpath :as cp :refer [get-classpath]]
[babashka.cli :as cli]
[babashka.process :as p]
[clojure.edn :as edn]
[clojure.java.io :as io]
[clojure.string :as string]
[deps-try.cli :as cli]
[deps-try.http-client]
[eval.deps-try.deps :as try-deps]
[eval.deps-try.errors :as errors]
Expand Down
4 changes: 2 additions & 2 deletions src/eval/deps_try/try.clj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
(ns eval.deps-try.try
(:require [babashka.cli :as cli]
[clojure.main]
(:require [clojure.main]
[clojure.pprint :as pp]
[clojure.repl :as clj-repl]
[deps-try.cli :as cli]
[eval.deps-try.deps :as try-deps]
[eval.deps-try.fs :as fs]
[eval.deps-try.history :as history]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
(ns babashka.cli
(ns deps-try.cli
(:refer-clojure :exclude [parse-boolean parse-long parse-double])
(:require
#?(:clj [clojure.edn :as edn]
:cljs [cljs.reader :as edn])
[babashka.cli.internal :as internal]
[deps-try.cli.internal :as internal]
[clojure.string :as str])
#?(:clj (:import (clojure.lang ExceptionInfo))))

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(ns babashka.cli.exec
(ns deps-try.cli.exec
(:require
[babashka.cli :as cli :refer [merge-opts parse-opts]]
[deps-try.cli :as cli :refer [merge-opts parse-opts]]
[clojure.edn :as edn]
[clojure.string :as str])
(:import [java.util.concurrent Executors ThreadFactory]))
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(ns babashka.cli.internal
(ns deps-try.cli.internal
{:no-doc true})

(defn- into-able? [x]
Expand All @@ -12,4 +12,3 @@
(into-able? y))
(into x y)
:else y))

0 comments on commit e4a25db

Please sign in to comment.