diff --git a/.gitignore b/.gitignore index 1e3a95744..49e4ee363 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ docs/assets/icons/sprite.svg dist/ docs/dist/ +docs/themes/ loader/ temp/ www/ diff --git a/make-dist.js b/make-dist.js index c72fcbd61..e67d8e45b 100644 --- a/make-dist.js +++ b/make-dist.js @@ -8,6 +8,7 @@ const del = require('del'); console.log(chalk.cyan('Creating docs distribution 📚\n')); await del('./docs/dist'); await copy('./dist', './docs/dist'); + await copy('./themes', './docs/themes'); } catch (err) { console.error(err); }