hexo-theme-hyonline
Version:
Futuristic online store theme for Hexo.
29 lines (26 loc) • 724 B
JavaScript
const chalk = require('chalk')
const pack = require('../package.json')
require('./lib/filters')(hexo)
require('./lib/generators')(hexo)
require('./lib/injector')(hexo)
hexo.on('generateAfter', function () {
console.log(
chalk.green('INFO ') +
chalk.yellow('API data generated by') +
chalk.cyan.bold(' Hyonline v' + pack.version)
)
})
hexo.on('exit', function () {
console.log(
chalk.green('INFO ') +
chalk.magenta('Thanks for using') +
chalk.cyan.bold(' Hyonline v' + pack.version)
)
console.log(
chalk.green('INFO ') +
chalk.magenta('Check out the repo at:') +
chalk.cyan.underline(
' https://github.com/hyonline-store/hexo-theme-hyonline'
)
)
})