Skip to content

Commit

Permalink
Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian Knabenschuh committed Aug 23, 2020
1 parent dd62a3c commit ddd28da
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 19 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![Clojars Project](https://img.shields.io/clojars/v/jtk-dvlp/re-frame-worker-fx.svg)](https://clojars.org/jtk-dvlp/re-frame-worker-fx)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/jtkDvlp/re-frame-worker-fx/blob/master/LICENSE)
[![Clojars Project](https://img.shields.io/clojars/v/re-frame-worker-fx.svg)](https://clojars.org/re-frame-worker-fx)

# Web workers effect handler for re-frame

Expand All @@ -10,7 +10,7 @@ This [re-frame](https://github.com/Day8/re-frame) library contains an [web worke
### Get it / add dependency

Add the following dependency to your `project.cljs`:<br>
[![Clojars Project](https://img.shields.io/clojars/v/re-frame-worker-fx.svg)](https://clojars.org/re-frame-worker-fx)
[![Clojars Project](https://img.shields.io/clojars/v/jtk-dvlp/re-frame-worker-fx.svg)](https://clojars.org/jtk-dvlp/re-frame-worker-fx)

### Usage

Expand Down
55 changes: 38 additions & 17 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,27 +1,48 @@
(defproject re-frame-worker-fx "1.0.3-alpha"
:description "A re-frame effects handler for performing async tasks via cljs-workers"
:url "https://github.com/jtkDvlp/re-frame-worker-fx"
:license {:name "MIT"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.9.229"]
(defproject jtk-dvlp/re-frame-worker-fx "1.0.3"
:description
"A re-frame effects handler for performing async tasks via cljs-workers"

[cljs-workers "1.1.2-alpha"]
[re-frame "0.9.1"]]
:url
"https://github.com/jtkDvlp/re-frame-worker-fx"

:min-lein-version "2.5.3"
:license
{:name "MIT"}

:source-paths ["src"]
:test-paths ["test"]
:dependencies
[[jtk-dvlp/cljs-workers "1.1.2"]]

:clean-targets ^{:protect false} ["resources/public/js" "target"]
:min-lein-version
"2.5.3"

:plugins [[lein-cljsbuild "1.1.4" :exclusions [[org.clojure/clojure]]]
[lein-figwheel "0.5.0-1"]]
:source-paths
["src"]

:profiles {:dev {:dependencies [[figwheel-sidecar "0.5.8"]
[com.cemerick/piggieback "0.2.1"]]}}
:clean-targets
^{:protect false}
["resources/public/js"
"target"]

:repl-options {:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}
:plugins
[[lein-cljsbuild "1.1.4"
:exclusions [[org.clojure/clojure]]]
[lein-figwheel "0.5.0-1"]]

:profiles
{:provided
{:dependencies
[[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.9.229"]

[re-frame "0.9.1"]]}

:dev
{:dependencies
[[figwheel-sidecar "0.5.8"]
[com.cemerick/piggieback "0.2.1"]]}}

:repl-options
{:nrepl-middleware
[cemerick.piggieback/wrap-cljs-repl]}

:cljsbuild
{:builds
Expand Down

0 comments on commit ddd28da

Please sign in to comment.