Skip to content

Commit

Permalink
project: move clojurescript dep under provided deps
Browse files Browse the repository at this point in the history
this in turn needs explicit clojurescript dep in dirac cli
  • Loading branch information
darwin committed Jan 21, 2020
1 parent 2a5a2f1 commit a2e8afc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dirac
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ if [[ -z "$DIRAC_CLI_DEPS_COORDINATE" ]]; then
fi
fi

DEPS="{:deps {$DIRAC_CLI_DEPS_COORDINATE clj-logging-config {:mvn/version \"1.9.12\"}}}"
DEPS="{:deps {$DIRAC_CLI_DEPS_COORDINATE org.clojure/clojurescript {:mvn/version \"RELEASE\"} clj-logging-config {:mvn/version \"1.9.12\"}}}"

if [[ -n "$DIRAC_CLI_ECHO_CMD" ]]; then
set -x
Expand Down
2 changes: 1 addition & 1 deletion install
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ INSTALL_LOCATION=${1:-/usr/local/bin}
NAME="dirac"
SOURCE_URL="https://raw.githubusercontent.com/binaryage/dirac/master/dirac"
TARGET="$INSTALL_LOCATION/$NAME"
EXPECTED_CHECKSUM=${DIRAC_INSTALL_EXPECTED_CHECKSUM:-156aaeb033d887fcd701b37ffa7e59094502c87707bea655f0e6a5c6f527a0b0}
EXPECTED_CHECKSUM=${DIRAC_INSTALL_EXPECTED_CHECKSUM:-5e9b52d8e5680003928579f28408ebf58c6f9a956d46671e76c614dec0654b21}

TMP_FILE=$(mktemp "/tmp/dirac.XXXXXX")

Expand Down
6 changes: 3 additions & 3 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
(def lein-cljsbuild-version "1.1.7")

(def provided-deps
[['org.clojure/clojure selected-clojure-version :scope "provided"]])
[['org.clojure/clojure selected-clojure-version :scope "provided"]
['org.clojure/clojurescript selected-clojurescript-version :scope "provided"]])

(def required-deps
[['org.clojure/clojurescript selected-clojurescript-version]
['org.clojure/core.async "0.7.559"]
[['org.clojure/core.async "0.7.559"]
['org.clojure/tools.logging "0.5.0"]
['org.clojure/tools.cli "0.4.2"]
['nrepl/nrepl "0.6.0"]
Expand Down

0 comments on commit a2e8afc

Please sign in to comment.