Skip to content

Commit b70bfde

Browse files
committed
Include tools.namespace dep in dev
This includes the super helpful refresh-all function which refreshes all files in the repl
1 parent 6d7a6d3 commit b70bfde

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

deps.edn

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
org.apache.logging.log4j/log4j-core {:mvn/version "2.20.0"}
1616
org.apache.logging.log4j/log4j-slf4j2-impl {:mvn/version "2.20.0"}}}
1717
:dev {
18-
:extra-deps {com.clojure-goes-fast/clj-async-profiler {:mvn/version "1.0.4"}}
18+
:extra-deps {com.clojure-goes-fast/clj-async-profiler {:mvn/version "1.0.4"}
19+
org.clojure/tools.namespace {:mvn/version "1.4.4"}}
1920

2021
:jvm-opts ["-Djdk.attach.allowAttachSelf" ;; for jdk9+
2122
]

src/csv2rdf/csvw.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
([tabular-source
6262
metadata-source
6363
table-schema-source
64-
{:keys [mode] :as options}]
64+
{:keys [mode]}]
6565
(let [mode (or mode :standard)
6666
{:keys [tables] :as metadata} (processing/get-metadata tabular-source metadata-source table-schema-source)
6767
table-group-dialect (:dialect metadata)

0 commit comments

Comments
 (0)