Skip to content

Commit

Permalink
change to echarts v5.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kimim committed May 5, 2021
1 parent c5ee516 commit b403a56
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 5 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
target
pom.xml
.lsp
.nrepl-port
.shadow-cljs/
node_modules/
package-lock.json
*/public/js/
5 changes: 5 additions & 0 deletions example/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"devDependencies": {
"shadow-cljs": "^2.3.22"
},
"dependencies": {
"echarts": "5.1.1",
"react": "17.0.1",
"react-dom": "17.0.1"
}
}
2 changes: 1 addition & 1 deletion example/shadow-cljs.edn
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

:dependencies
[[reagent "1.0.0"]
[re-echarts "5.0.2"]]
[re-echarts "5.1.1"]]

:builds
{:app {:target :browser
Expand Down
2 changes: 1 addition & 1 deletion localrepo.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh
# move jar to local repo for testing purpose
export version=5.0.2
export version=5.1.1
lein jar
lein pom
lein localrepo install target/re-echarts-$version.jar re-echarts $version
Expand Down
8 changes: 6 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject re-echarts/re-echarts "5.0.2"
(defproject re-echarts/re-echarts "5.1.1"
:description "React ECharts wrapper in ClojureScript"
:url "https://github.com/kimim/re-echarts"

Expand All @@ -15,4 +15,8 @@
:sign-releases false}}

:source-paths
["src"])
["src"]

:plugins
[[lein-localrepo "0.5.4"]]
)
2 changes: 1 addition & 1 deletion src/deps.cljs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{:npm-deps {"echarts" "5.0.2"}}
{:npm-deps {"echarts" "5.1.1"}}

0 comments on commit b403a56

Please sign in to comment.