mirror of
https://github.com/iconify/iconify.git
synced 2024-11-16 17:45:09 +00:00
14 lines
264 B
JavaScript
14 lines
264 B
JavaScript
|
import fs from 'fs'
|
||
|
|
||
|
fs.cpSync(
|
||
|
'./tests/fixtures/plain-color-icons',
|
||
|
'./node_modules/plain-color-icons',
|
||
|
{ recursive: true }
|
||
|
)
|
||
|
|
||
|
fs.cpSync(
|
||
|
'./tests/fixtures/@test-scope/test-color-icons',
|
||
|
'./node_modules/@test-scope/test-color-icons',
|
||
|
{ recursive: true }
|
||
|
)
|