Skip to content

Commit

Permalink
Cleanup project.clj and use jtk-dvlp group
Browse files Browse the repository at this point in the history
  • Loading branch information
jtkDvlp committed Aug 23, 2020
1 parent 4299721 commit 7585ba2
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 18 deletions.
6 changes: 3 additions & 3 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/cljs-workers.svg)](https://clojars.org/cljs-workers)
[![cljdoc badge](https://cljdoc.org/badge/cljs-workers/cljs-workers)](https://cljdoc.org/d/cljs-workers/cljs-workers/CURRENT)
[![Clojars Project](https://img.shields.io/clojars/v/jtk-dvlp/cljs-workers.svg)](https://clojars.org/jtk-dvlp/cljs-workers)
[![cljdoc badge](https://cljdoc.org/badge/jtk-dvlp/cljs-workers)](https://cljdoc.org/d/jtk-dvlp/cljs-workers/CURRENT)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/jtkDvlp/cljs-workers/blob/master/LICENSE)

# Web workers for clojurescript
Expand All @@ -11,7 +11,7 @@ This [clojurescript](https://clojurescript.org/) library wraps the [web worker a
### Get it / add dependency

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

### Usage

Expand Down
48 changes: 33 additions & 15 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,24 +1,42 @@
(defproject cljs-workers "1.1.2"
:description "A clojurescript lib for performing async tasks via web workers"
:url "https://github.com/jtkDvlp/cljs-workers"
:license {:name "MIT"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.9.229"]]
(defproject jtk-dvlp/cljs-workers "1.1.2"
:description
"A clojurescript lib for performing async tasks via web workers"

:min-lein-version "2.5.3"
:url
"https://github.com/jtkDvlp/cljs-workers"

:source-paths ["src"]
:test-paths ["test"]
:license
{:name "MIT"}

: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"]]}

: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 7585ba2

Please sign in to comment.