diff --git a/Makefile b/Makefile index 1d0be9b..b588384 100644 --- a/Makefile +++ b/Makefile @@ -7,8 +7,7 @@ test-clj: clean: clj -T:build clean install: - make clean && clj -T:build jar && clj -T:build install \ - && mkdir -p tmp && cd tmp + make clean && clj -T:build jar && clj -T:build install && mkdir -p tmp && cd tmp deploy: clj -T:build deploy .PHONY: list diff --git a/README.md b/README.md index 1504a48..2d2a29c 100644 --- a/README.md +++ b/README.md @@ -91,17 +91,12 @@ namespace exists which contains a subset of the functions from `tick.core` which ### Depend -There is no tempo maven artifact atm. +[![Clojars Project](https://img.shields.io/clojars/v/com.widdindustries/tempo.svg)](https://clojars.org/com.widdindustries/tempo) -Depend on tempo via deps.edn: - -```clojure -{:deps {com.widdindustries/tempo - {:git/url "https://github.com/henryw374/tempo.git" - :sha "abc"} ; to get data-literals for java.time and Temporal, also add... - com.widdindustries/time-literals-tempo {:mvn/version "0.1.10"}}} -``` + + +[![Clojars Project](https://img.shields.io/clojars/v/com.widdindustries/time-literals-tempo.svg)](https://clojars.org/com.widdindustries/time-literals-tempo) * As of March 2024, a polyfill (e.g. [this](https://github.com/fullcalendar/temporal-polyfill)) of Temporal will be required for all javascript environments. * The new underlying Javascript platform time API [Temporal](https://github.com/tc39/proposal-temporal) has semi-stabilized at diff --git a/dev/build.clj b/dev/build.clj index 764d616..93e2a09 100644 --- a/dev/build.clj +++ b/dev/build.clj @@ -19,18 +19,22 @@ ) (defn jar [_] + (println "jarring ") (b/write-pom {:src-pom "dev/src-pom.xml" :class-dir class-dir :lib lib :version version :basis basis :src-dirs ["src"]}) + (println "jarring 2") (b/copy-dir {:src-dirs ["src"] :target-dir class-dir}) + (println "jarring 3") (b/jar {:class-dir class-dir :jar-file jar-file})) (defn install [_] + (println "installing ") (b/install {:basis basis :lib lib :version version