mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 12:09:26 +00:00
7 lines
307 B
JavaScript
7 lines
307 B
JavaScript
const copy = require('recursive-copy');
|
|
|
|
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));
|