Update build script (#272)

* Copy dot files if present in the static folder, and add .circleci config to Docusaurus site

* Update docs
This commit is contained in:
Héctor Ramos 2017-12-11 16:32:05 -08:00 committed by Joel Marcey
parent c62e18eb53
commit 11029cf02d
3 changed files with 13 additions and 3 deletions

View file

@ -365,7 +365,7 @@ function execute() {
});
// copy all static files from user
files = glob.sync(join(CWD, 'static', '**'));
files = glob.sync(join(CWD, 'static', '**'), { dot: true});
files.forEach(file => {
// parse css files to replace colors according to siteConfig
if (file.match(/\.css$/) && !isSeparateCss(file)) {