From e6198c853eaab938213543de11e6e5a15dfbf75e Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Tue, 18 Aug 2020 17:30:58 -0400 Subject: [PATCH] Copy themes to docs dist --- .gitignore | 1 + make-dist.js | 1 + 2 files changed, 2 insertions(+) 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); }