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)