Copy license too

This commit is contained in:
Cory LaViska
2020-04-07 12:45:38 -04:00
parent 5ae010f632
commit 7323f4e374

View File

@@ -1,5 +1,6 @@
const copy = require('recursive-copy');
copy('./node_modules/bootstrap-icons/icons', './src/components/icon/icons', { overwrite: true }).catch(err =>
console.error(err)
);
Promise.all([
copy('./node_modules/bootstrap-icons/icons', './src/components/icon/icons', { overwrite: true }),
copy('./node_modules/bootstrap-icons/LICENSE.md', './src/components/icon/icons/LICENSE.md', { overwrite: true })
]).catch(err => console.error(err));