14 lines
243 B
JavaScript
14 lines
243 B
JavaScript
import { copy } from 'fs-extra';
|
|
import {
|
|
assetsPath,
|
|
faviconPath,
|
|
distPath,
|
|
} from '../common/file';
|
|
|
|
copy(assetsPath(), distPath('assets'), (err) => {
|
|
if (err) {
|
|
return console.error(err);
|
|
}
|
|
console.log("copied assets");
|
|
});
|