hexo-theme-hyonline
Version:
Futuristic online store theme for Hexo.
22 lines (17 loc) • 380 B
JavaScript
const pack = require('../../../package.json')
class SiteGenerator {
data = {}
constructor(configs) {
configs.theme_config.version = pack.version
this.data = configs
}
addSiteConfig(data) {
const configs = this.data
data.push({
path: 'api/site.json',
data: JSON.stringify(configs)
})
return data
}
}
module.exports = SiteGenerator