diff --git a/make-dist.js b/make-dist.js index e67d8e45..fb050734 100644 --- a/make-dist.js +++ b/make-dist.js @@ -8,7 +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'); + await copy('./themes', './docs/themes', { overwrite: true }); } catch (err) { console.error(err); }