Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
henryw374 committed Mar 8, 2024
1 parent 9632107 commit 25ef307
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
13 changes: 4 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions dev/build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 25ef307

Please sign in to comment.