Skip to content

Commit

Permalink
Bumps deps
Browse files Browse the repository at this point in the history
  • Loading branch information
dehli committed Nov 21, 2019
1 parent 31b6764 commit 8b39c07
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 11 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,11 @@
# Serverless

AWS serverless helpers targeting Cljs.

## Running Tests

```
clj -A:test
```

## Publishing version
12 changes: 5 additions & 7 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{:deps {org.clojure/clojure {:mvn/version "1.10.0"}
org.clojure/clojurescript {:mvn/version "1.10.520"}
org.clojure/core.async {:mvn/version "0.4.490"}}
{:deps {org.clojure/clojure {:mvn/version "1.10.1"}
org.clojure/clojurescript {:mvn/version "1.10.597"}
org.clojure/core.async {:mvn/version "0.5.527"}}

:paths ["src"]

Expand All @@ -11,9 +11,7 @@
:main-opts ["./scripts/build.clj"]}

:test
{:extra-deps {olical/cljs-test-runner {:mvn/version "3.5.0"}
org.clojure/tools.namespace {:mvn/version "0.3.0-alpha4"}
doo {:mvn/version "0.1.11"}}
{:extra-deps {olical/cljs-test-runner {:mvn/version "3.7.0"}}
:extra-paths ["test"]
:main-opts ["-m" "cljs-test-runner.main"]}

Expand All @@ -23,7 +21,7 @@

:extra-deps
{pack/pack.alpha {:git/url "https://github.com/juxt/pack.alpha.git"
:sha "81b9e47d992b17aa3e3af1a47aed1f0287ebe9b8"}}}
:sha "2769a6224bfb938e777906ea311b3daf7d2220f5"}}}

:deploy
{:main-opts
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,24 @@

<groupId>dehli</groupId>
<artifactId>serverless</artifactId>
<version>0.1.5</version>
<version>0.1.6</version>
<name>serverless</name>

<dependencies>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>1.10.0</version>
<version>1.10.1</version>
</dependency>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojurescript</artifactId>
<version>1.10.520</version>
<version>1.10.597</version>
</dependency>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>core.async</artifactId>
<version>0.4.490</version>
<version>0.5.527</version>
</dependency>
</dependencies>
<build>
Expand Down

0 comments on commit 8b39c07

Please sign in to comment.