Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,21 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
- uses: actions/checkout@v3
- uses: actions/setup-java@v4
with:
java-version: 11
- uses: DeLaGuardo/setup-clojure@5.0
distribution: 'temurin'
java-version: '21'
- uses: DeLaGuardo/setup-clojure@13.4
with:
cli: '1.10.1.727'
cli: '1.12.0.1530'
- name: Setup Node.js environment
uses: actions/setup-node@v3.8.1
#with:
uses: actions/setup-node@v4
with:
# Set always-auth in npmrc
#always-auth: # optional, default is false
# Version Spec of the version to use. Examples: 10.x, 10.15.1, >=10.15.0
#node-version: # optional, default is 10.x
node-version: 24
# Optional registry to set up for auth. Will set the registry in a project level .npmrc and .yarnrc file, and set up auth to read in from env.NODE_AUTH_TOKEN
#registry-url: # optional
# Optional scope for authenticating against scoped registries
Expand Down
4 changes: 2 additions & 2 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{:paths ["src" "resources"]
:deps {cljs-bean/cljs-bean {:mvn/version "1.5.0"}}
:deps {cljs-bean/cljs-bean {:mvn/version "1.9.0"}}
:aliases {:test {:extra-paths ["test"]
:extra-deps {lambdaisland/kaocha {:mvn/version "1.66.1034"}
:extra-deps {lambdaisland/kaocha {:mvn/version "1.91.1392"}
org.clojure/clojurescript {:mvn/version "LATEST"}}
:main-opts ["-m" "kaocha.runner"]}}}
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"test": "clojure -M:test"
},
"author": "",
"license": "EPL-2.0",
"dependencies": {
"karma": "^5.0.2",
"karma-chrome-launcher": "^3.1.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-cljs-test": "^0.1.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-refresh": "^0.13.0",
"shadow-cljs": "^2.15.12",
"showdown": "^1.9.1"
"react-refresh": "^0.17.0",
"shadow-cljs": "^3.1.7",
"showdown": "^2.1.0"
}
}
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v20.html"}
:source-paths ["src" "resources"]
:dependencies [[cljs-bean "1.5.0"]]
:dependencies [[cljs-bean "1.9.0"]]
:deploy-repositories [["snapshots" {:sign-releases false :url "https://clojars.org"}]])
6 changes: 3 additions & 3 deletions shadow-cljs.edn
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
:nrepl {:port 8777}

:dependencies
[[binaryage/devtools "0.9.7"]
[devcards "0.2.5"]
[cljs-bean "1.5.0"]]
[[binaryage/devtools "1.0.7"]
[devcards "0.2.7"]
[cljs-bean "1.9.0"]]

:builds
{:dev {:target :browser
Expand Down