You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The correct behaviour should always be the second one, as that directory is not needed on the deployed website, and can cause problems when commiting files (47degrees/github4s#259), etc.
The text was updated successfully, but these errors were encountered:
calvellido
changed the title
microsite dir being copied when sbt-microsites used in main sbt module
microsite dir being copied when using sbt-microsites in main sbt module
Sep 19, 2019
In a simple project using
sbt-microsites
:src
▼main
▼resources
▼microsite
▼data
▼menu.yml
scala
▼HelloWorld.scala
tut
▼docs
►index.md
With these settings, when we run
makeMicrosite
, the generatedtarget/site
will include the wholemicrosite
directory:css
►docs
►highlight
►img
►js
►microsite
▼data
▼menu.yml
_config.yml
index.html
This won't happen if the
MicrositePlugin
is being used as part of another module, saydocs
:docs
▼src
▼main
▼resources
▼microsite
▼data
▼menu.yml
tut
▼docs
►index.md
src
▼main
▼scala
▼HelloWorld.scala
Then, the generated
docs/target/site
would be:css
►docs
►highlight
►img
►js
►_config.yml
index.html
The correct behaviour should always be the second one, as that directory is not needed on the deployed website, and can cause problems when commiting files (47degrees/github4s#259), etc.
The text was updated successfully, but these errors were encountered: