Repository URL to install this package:
|
Version:
1.2.7 ▾
|
import { resolveToRoot } from '../../config/resolveToRoot'
export default function copyToDist() {
const jetpack = require('fs-jetpack')
const copyFrom = resolveToRoot('config')
const copyTo = resolveToRoot('dist/config')
jetpack.copy(copyFrom, copyTo, { overwrite: true, matching: '**' })
}