Skip to content

Commit b030fda

Browse files
committed
upgrade deps; upgrade respo; bump 0.0.5
1 parent 2957f08 commit b030fda

File tree

9 files changed

+149
-68
lines changed

9 files changed

+149
-68
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Demo http://repo.mvc-works.org/fuzzy-filter/
1111
[![Clojars Project](https://img.shields.io/clojars/v/mvc-works/fuzzy-filter.svg)](https://clojars.org/mvc-works/fuzzy-filter)
1212

1313
```edn
14-
[mvc-works/fuzzy-filter "0.0.4"]
14+
[mvc-works/fuzzy-filter "0.0.5"]
1515
```
1616

1717
```edn

calcit.edn

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

meyvn.edn

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

22
{:pom {:group-id "mvc-works",
33
:artifact-id "fuzzy-filter",
4-
:version "0.0.4",
4+
:version "0.0.5",
55
:name "A customzed fuzzy search function"}
66
:packaging {:jar {:enabled true
77
:remote-repository {:id "clojars"

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
"license": "MIT",
2222
"devDependencies": {
2323
"http-server": "^0.11.1",
24-
"shadow-cljs": "^2.6.9"
24+
"shadow-cljs": "^2.7.4"
2525
},
2626
"dependencies": {
27-
"shortid": "^2.2.13"
27+
"shortid": "^2.2.14"
2828
}
2929
}

shadow-cljs.edn

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,22 @@
11

22
{:source-paths ["src" "cli"]
33
:dependencies [[mvc-works/hsl "0.1.2"]
4-
[mvc-works/verbosely "0.1.2"]
5-
[mvc-works/shell-page "0.1.8"]
6-
[respo "0.8.20"]
7-
[respo/ui "0.3.7"]
8-
[respo/alerts "0.3.6"]
9-
[respo/value "0.2.4"]
10-
[respo/markdown "0.2.1"]
11-
[respo/reel "0.3.2"]]
4+
[mvc-works/shell-page "0.1.9"]
5+
[respo "0.10.2"]
6+
[respo/ui "0.3.10"]
7+
[respo/alerts "0.3.9"]
8+
[respo/value "0.2.5"]
9+
[respo/markdown "0.2.4"]
10+
[respo/reel "0.3.4"]]
1211
:open-file-command ["subl" ["%s:%s:%s" :file :line :column]]
1312
:socket-repl {:port 0}
1413
:builds {:client {:target :browser
1514
:output-dir "target/"
1615
:asset-path "./"
17-
:modules {:client {:entries [fuzzy-filter.main]}}
16+
:modules {:client {:init-fn fuzzy-filter.main/main!}}
1817
:devtools {:after-load fuzzy-filter.main/reload!
1918
:http-root "target"
20-
:http-port 7000
21-
:loader-mode :eval}
19+
:http-port 7000}
2220
:compiler-options {:infer-externs :auto}
2321
:release {:output-dir "dist/"
2422
:module-hash-names 8

src/fuzzy_filter/comp/container.cljs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22
(ns fuzzy-filter.comp.container
33
(:require [hsl.core :refer [hsl]]
44
[respo-ui.core :as ui]
5-
[respo.macros
5+
[respo.core
66
:refer
77
[defcomp cursor-> action-> mutation-> <> div button textarea span input pre]]
8-
[verbosely.core :refer [verbosely!]]
98
[respo.comp.space :refer [=<]]
109
[reel.comp.reel :refer [comp-reel]]
1110
[respo-md.comp.md :refer [comp-md]]

src/fuzzy_filter/comp/visual.cljs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
(ns fuzzy-filter.comp.visual
33
(:require [hsl.core :refer [hsl]]
44
[respo-ui.core :as ui]
5-
[respo.macros
5+
[respo.core
66
:refer
77
[defcomp cursor-> list-> <> div button textarea span input pre]]
88
[respo.comp.space :refer [=<]]))

src/fuzzy_filter/main.cljs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,3 @@
4242
(clear-cache!)
4343
(reset! *reel (refresh-reel @*reel schema/store updater))
4444
(println "Code updated."))
45-
46-
(set! (.-onload js/window) main!)

0 commit comments

Comments
 (0)