Skip to content

Commit c4aa081

Browse files
committed
upgrade deps and format
1 parent cea3f5b commit c4aa081

File tree

3 files changed

+197
-184
lines changed

3 files changed

+197
-184
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
"author": "jiyinyiyong",
2020
"license": "MIT",
2121
"devDependencies": {
22-
"http-server": "^0.11.1",
23-
"shadow-cljs": "^2.8.40"
22+
"http-server": "^0.12.1",
23+
"shadow-cljs": "^2.8.91"
2424
},
2525
"dependencies": {
26-
"github-markdown-css": "^3.0.1",
27-
"highlight.js": "^9.15.8",
28-
"shortid": "^2.2.14"
26+
"github-markdown-css": "^4.0.0",
27+
"highlight.js": "^9.18.1",
28+
"shortid": "^2.2.15"
2929
}
3030
}

shadow-cljs.edn

Lines changed: 44 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,44 @@
1-
2-
{:source-paths ["src" "cli" "docs"]
3-
:cache-blockers #{cumulo-util.build}
4-
:dependencies [[mvc-works/hsl "0.1.2"]
5-
[mvc-works/shell-page "0.1.10"]
6-
[respo "0.10.11"]
7-
[respo/ui "0.3.13"]
8-
[respo/alerts "0.3.12"]
9-
[respo/value "0.2.5"]
10-
[respo/markdown "0.2.4"]
11-
[respo/reel "0.3.5"]
12-
[cumulo/util "0.1.10"]
13-
[medley "1.2.0"]
14-
[org.clojure/core.incubator "0.1.4"]]
15-
:repositories {"central" {:url "https://maven.aliyun.com/nexus/content/groups/public/"}
16-
"clojars" {:url "https://mirrors.ustc.edu.cn/clojars/"}}
17-
:open-file-command ["subl" ["%s:%s:%s" :file :line :column]]
18-
:dev-http {7000 "target/"}
19-
:builds {:client {:target :browser
20-
:output-dir "target/"
21-
:asset-path "./"
22-
:modules {:client {:init-fn app.main/main!}}
23-
:devtools {:after-load app.main/reload!}
24-
:compiler-options {:infer-externs :auto}
25-
:release {:output-dir "dist/"
26-
:module-hash-names 8
27-
:build-options {:manifest-name "assets.edn"}}}
28-
:page {:target :node-script
29-
:output-to "target/page.js"
30-
:main app.page/main!
31-
:devtools {:after-load app.page/main!}}}}
1+
{
2+
:source-paths ["src" "cli" "docs"]
3+
:cache-blockers #{cumulo-util.build}
4+
:dependencies [
5+
[mvc-works/hsl "0.1.2"]
6+
[mvc-works/shell-page "0.1.10"]
7+
[respo "0.11.5"]
8+
[respo/ui "0.3.13"]
9+
[respo/alerts "0.4.3"]
10+
[respo/value "0.2.5"]
11+
[respo/markdown "0.2.5"]
12+
[respo/reel "0.3.5"]
13+
[cumulo/util "0.1.10"]
14+
[medley "1.3.0"]
15+
[org.clojure/core.incubator "0.1.4"]
16+
]
17+
:repositories {
18+
"central" {:url "https://maven.aliyun.com/nexus/content/groups/public/"}
19+
"clojars" {:url "https://mirrors.ustc.edu.cn/clojars/"}
20+
}
21+
:open-file-command [
22+
"subl"
23+
["%s:%s:%s" :file :line :column]
24+
]
25+
:dev-http {7000 "target/"}
26+
:builds {
27+
:client {
28+
:target :browser, :output-dir "target/", :asset-path "./"
29+
:modules {
30+
:client {:init-fn app.main/main!}
31+
}
32+
:devtools {:after-load app.main/reload!}
33+
:compiler-options {:infer-externs :auto}
34+
:release {
35+
:output-dir "dist/", :module-hash-names 8
36+
:build-options {:manifest-name "assets.edn"}
37+
}
38+
}
39+
:page {
40+
:target :node-script, :output-to "target/page.js", :main app.page/main!
41+
:devtools {:after-load app.page/main!}
42+
}
43+
}
44+
}

0 commit comments

Comments
 (0)