hexo-theme-icarus/scripts/index.js

32 lines
1.2 KiB
JavaScript
Raw Normal View History

2020-01-04 02:28:38 +00:00
/* global hexo */
2024-02-03 08:02:38 +00:00
const createLogger = require('hexo-log');
const logger = createLogger.default();
/**
* Print welcome message
*/
logger.info(`=======================================
=============================================`);
/**
* Check if all dependencies are installed
*/
2020-01-04 02:28:38 +00:00
require('../include/dependency')(hexo);
/**
* Configuration file checking and migration
*/
2020-01-04 02:28:38 +00:00
require('../include/config')(hexo);
2018-10-16 05:28:42 +00:00
/**
2020-01-04 02:28:38 +00:00
* Register Hexo extensions and remove Hexo filters that could cause OOM
*/
2020-01-04 02:28:38 +00:00
require('../include/register')(hexo);