Skip to content

Commit f86b3ee

Browse files
committed
upgrade respo.core; bump 0.2.5
1 parent 05ceb82 commit f86b3ee

File tree

13 files changed

+170
-750
lines changed

13 files changed

+170
-750
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11

2-
coir.edn -diff linguist-generated
2+
calcit.edn -diff linguist-generated
33
yarn.lock -diff

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
/dist
33
/target
44
/node_modules
5+
.nrepl-port
6+
.shadow-cljs/

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ Respo Value Component
44

55
Component to display values interactively.
66

7-
Demo http://repo.respo.site/value/
7+
Demo http://repo.respo-mvc.org/value/
88

99
### Usage
1010

1111
[![Clojars Project](https://img.shields.io/clojars/v/respo/value.svg)](https://clojars.org/respo/value)
1212

1313
```clojure
14-
[respo/value "0.2.4"]
14+
[respo/value "0.2.5"]
1515
```
1616

1717
```clojure

build.boot

Lines changed: 0 additions & 23 deletions
This file was deleted.

coir.edn renamed to calcit.edn

Lines changed: 8 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

meyvn.edn

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
{:pom {:group-id "respo",
3+
:artifact-id "value",
4+
:version "0.2.5",
5+
:name "Respo value component"}
6+
:packaging {:jar {:enabled true
7+
:remote-repository {:id "clojars"
8+
:url "https://clojars.org/repo"}}}
9+
:scm {:enabled true}}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"license": "MIT",
88
"scripts": {
99
"cdn": "rsync -avr --progress dist/* tiye.me:cdn/respo-value",
10-
"tiye": "rsync -r dist/{index.html,manifest.json} respo.site:repo/Respo/value/",
10+
"tiye": "rsync -r dist/{index.html,manifest.json} respo-mvc.org:repo/Respo/value/",
1111
"upload": "yarn cdn && yarn tiye",
1212
"release": "shadow-cljs release browser",
1313
"watch": "shadow-cljs watch browser",
@@ -23,8 +23,8 @@
2323
},
2424
"devDependencies": {
2525
"http-server": "^0.11.1",
26-
"shadow-cljs": "^2.0.138",
27-
"shortid": "^2.2.8"
26+
"shadow-cljs": "^2.6.21",
27+
"shortid": "^2.2.13"
2828
},
2929
"dependencies": {}
3030
}

shadow-cljs.edn

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
11

22
{:source-paths ["src"]
33
:dependencies [[mvc-works/hsl "0.1.2"]
4-
[mvc-works/shell-page "0.1.6"]
5-
[respo "0.8.12"]]
4+
[mvc-works/shell-page "0.1.9"]
5+
[respo "0.9.0"]]
66
:open-file-command ["subl" ["%s:%s:%s" :file :line :column]]
77
:builds {:browser {:target :browser
88
:output-dir "target/"
99
:asset-path "./"
10-
:modules {:main {:entries [respo-value.main]
11-
:depends-on #{:lib}}
12-
:lib {:entries [respo.core respo.macros
13-
respo.comp.inspect]}}
10+
:modules {:main {:init-fn respo-value.main/main!}}
1411
:devtools {:after-load respo-value.main/reload!
15-
:preloads [shadow.cljs.devtools.client.hud]
1612
:http-root "target"
17-
:http-port 7000}
13+
:http-port 7000
14+
:loader-mode :eval}
1815
:release {:output-dir "dist/"
1916
:module-hash-names 8
2017
:build-options {:manifest-name "assets.edn"}}}

src/respo_value/comp/container.cljs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[respo-value.schema :as schema]
66
[respo.comp.space :refer [=<]]
77
[respo.comp.inspect :refer [comp-inspect]]
8-
[respo.macros :refer [defcomp cursor-> <> div span list->]]
8+
[respo.core :refer [defcomp cursor-> <> div span list->]]
99
[respo-value.style.layout :as layout]
1010
[respo-value.style.widget :as widget]))
1111

src/respo_value/comp/value.cljs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[respo-value.style.widget :as widget]
55
[respo-value.style.layout :as layout]
66
[respo-value.style.decoration :as decoration]
7-
[respo.macros :refer [defcomp cursor-> <> div span list->]]))
7+
[respo.core :refer [defcomp cursor-> <> div span list->]]))
88

99
(declare comp-map)
1010

0 commit comments

Comments
 (0)