Skip to content

Commit

Permalink
[wip] Use tools.deps & shadow-cljs
Browse files Browse the repository at this point in the history
  • Loading branch information
kimo-k committed Mar 26, 2024
1 parent 10ec6eb commit a400eb4
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ jobs:
id: maven-cache
with:
path: /root/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('project.clj', '.github/workflows/**') }}
key: ${{ runner.os }}-maven-${{ hashFiles('project.clj', 'deps.edn', '.github/workflows/**') }}
restore-keys: |
${{ runner.os }}-maven-
- name: npm cache
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-npm-${{ hashFiles('project.clj') }}-${{ hashFiles('**/deps.cljs') }}
key: ${{ runner.os }}-npm-${{ hashFiles('package.json', 'package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: shadow-cljs compiler cache
Expand Down
14 changes: 14 additions & 0 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{:paths ["src" "test"]
:deps {org.clojure/clojure {:mvn/version "1.11.1"}
org.clojure/clojurescript {:mvn/version "1.11.132"
:exclusions [com.google.javascript/closure-compiler-unshaded
org.clojure/google-closure-library
org.clojure/google-closure-library-third-party]}
thheller/shadow-cljs {:mvn/version "2.28.2"}
reagent/reagent {:mvn/version "1.1.0"}
org.clojure/core.async {:mvn/version "1.3.618"}
com.andrewmcveigh/cljs-time {:mvn/version "0.5.2"}
alandipert/storage-atom {:mvn/version "2.0.1"}
com.cognitect/transit-cljs {:mvn/version "0.8.264"}
clj-commons/secretary {:mvn/version "1.2.4"}
day8/shadow-git-inject {:mvn/version "0.0.5"}}}

0 comments on commit a400eb4

Please sign in to comment.