UNPKG

673 BJavaScriptView Raw
1const loadConfig = require('./loadConfig');
2const getSectionConfig = require('./getSectionConfig');
3const getContentList = require('./getContentList');
4const getContent = require('./getContent');
5const compilePage = require('./compilePage');
6const runProcessor = require('./runProcessor');
7const getSiteMetadata = require('./getSiteMetadata');
8const compileCss = require('./compileCss');
9
10var tasks = {
11 loadConfig: loadConfig,
12 getSectionConfig: getSectionConfig,
13 getContentList: getContentList,
14 getContent: getContent,
15 compilePage: compilePage,
16 runProcessor: runProcessor,
17 getSiteMetadata: getSiteMetadata,
18 compileCss: compileCss
19};
20
21module.exports = tasks;
\No newline at end of file