From 382b9a54cf5769b2397673ec74fbee7770dcc32e Mon Sep 17 00:00:00 2001 From: Juan Valencia Date: Fri, 10 May 2019 14:12:31 +0200 Subject: [PATCH] Include `*.csv` in the built microsite (#625) * Include `.csv` files as part of the ones that be included when building the site --- build.sbt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 8fa4f5b89..eab008f5b 100644 --- a/build.sbt +++ b/build.sbt @@ -406,7 +406,8 @@ lazy val docSettings = Seq( micrositeGithubToken := sys.env.get("SBT_MICROSITES_PUBLISH_TOKEN"), ghpagesNoJekyll := false, fork in tut := true, - micrositeEditButton := Some(MicrositeEditButton("Improve this page", "/edit/master/modules/docs/src/main/tut/{{ page.path }}")) + micrositeEditButton := Some(MicrositeEditButton("Improve this page", "/edit/master/modules/docs/src/main/tut/{{ page.path }}")), + includeFilter in makeSite := "*.html" | "*.css" | "*.png" | "*.jpg" | "*.jpeg" | "*.gif" | "*.js" | "*.swf" | "*.md" | "*.webm" | "*.ico" | "CNAME" | "*.yml" | "*.svg" | "*.json" | "*.csv" ) lazy val docs = (project in file("modules/docs"))