Skip to content

Commit 4ae2270

Browse files
committed
Use deps-library for releases
1 parent 0d62703 commit 4ae2270

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

deps.edn

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,6 @@
1010
{:git/url "https://github.com/cognitect-labs/test-runner"
1111
:sha "76568540e7f40268ad2b646110f237a60295fa3c"}}
1212
:main-opts ["-m" "cognitect.test-runner"
13-
"-d" "test"]}}}
13+
"-d" "test"]}
14+
:release {:extra-deps {applied-science/deps-library {:mvn/version "0.4.0"}}
15+
:main-opts ["-m" "applied-science.deps-library"]}}}

release.edn

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{:group-id "applied-science"
2+
:artifact-id "waqi"
3+
:scm-url "https://github.com/applied-science/waqi"}

src/applied_science/waqi.clj

+3
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@
2828
[org.httpkit.server :as httpkit]
2929
[ring.util.response :as ring]))
3030

31+
;; TODO consider delegating websocket interaction to Funnel:
32+
;; https://clojureverse.org/t/announcing-the-first-release-of-funnel/6023
33+
3134
(defonce ^{:doc "WebSocket channel for sending Vega specs to the browser."}
3235
ws-chan (atom nil))
3336

0 commit comments

Comments
 (0)