hexo-theme-sb
Version:
Clean and simple theme for Hexo blog framework
19 lines (13 loc) • 296 B
JavaScript
const ncp = require('ncp')
ncp.limit = 16
const configSrc = '../../node_modules/hexo-theme-sb'
const configDest = '../../themes/hexo-theme-sb/'
const configOptions = {
clobber: false
}
ncp(configSrc, configDest, configOptions, (err) => {
if (err) {
return false
}
return true
})