-
Notifications
You must be signed in to change notification settings - Fork 28
Deprecate leiningen and rehydrate deps #58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| @@ -1,6 +1,6 @@ | |||
| (ns honeysql-postgres.helpers | |||
| (:refer-clojure :exclude [partition-by]) | |||
| (:require [honeysql-postgres.format :refer :all] | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to do this because:
clj-kondodoes not like:refer :all- ClojureScript does not support
:refer :all, but we do test against it (as we should)
| "-d" "test"]} | ||
| :cljs-runner {:extra-deps {olical/cljs-test-runner {:mvn/version "3.8.0"}} | ||
| :main-opts ["-m" "cljs-test-runner.main"]} | ||
| :jar {:replace-deps {seancorfield/depstar {:mvn/version "2.0.165"}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the rationale for having both a :depstar alias and a :jar alias? Wouldn't the :depstar alias alone suffice for creating both uberjars and jars?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed the depstar alias. I'm thinking, since this is a library, we shouldn't really need to build an uberjar. Thin jar should suffice.
As per the conversation in #46 (comment).
clj -M:test:runnerfor running testsclj -M:test:cljs-runnerfor running tests against ClojureScriptclj -X:jar :jar honeysql-postgres.jarfor building a thin library jar