From 0c0d5afacd18c8d4551f473b34f4decf8107853b Mon Sep 17 00:00:00 2001 From: Michiel Borkent Date: Sun, 30 May 2021 19:41:06 +0200 Subject: [PATCH] add html to releases --- script/release.clj | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/script/release.clj b/script/release.clj index b67d873..60cf740 100755 --- a/script/release.clj +++ b/script/release.clj @@ -18,6 +18,12 @@ (fs/copy "resources/public/disable_auto_eval.html" "gh-pages" {:replace-existing true}) +(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)) + (def style-source-dir (fs/file "resources" "public" "css")) (def style-target-dir (fs/file "gh-pages" "css")) (fs/create-dirs style-target-dir)