cljs-ajax example

This commit is contained in:
Michiel Borkent 2021-06-11 14:31:57 +02:00
parent f5b014864f
commit f10870268e
3 changed files with 51 additions and 2 deletions

View file

@ -21,8 +21,9 @@
(def html-source-dir (fs/file "resources" "public" "html"))
(def html-target-dir (fs/file "gh-pages" "html"))
(fs/create-dirs html-target-dir)
(doseq [html ["export.html" "reagent.html"]]
(fs/copy (fs/file html-source-dir html) html-target-dir))
(doseq [html ["export.html" "reagent.html" "cljs-ajax.html"]]
(fs/copy (fs/file html-source-dir html) html-target-dir
{:replace-existing true}))
(def style-source-dir (fs/file "resources" "public" "css"))
(def style-target-dir (fs/file "gh-pages" "css"))