angular-material-npfixed
Version:
The Angular Material project is an implementation of Material Design in Angular.js. This project provides a set of reusable, well-tested, and accessible Material Design UI components. Angular Material is supported internally at Google by the Angular.js, M
19 lines (16 loc) • 421 B
JavaScript
var buildConfig = require('../../../config/build.config');
module.exports = function indexPageProcessor(log) {
return {
$runAfter: ['componentsGenerateProcessor'],
$runBefore: ['rendering-docs'],
$process: process
};
function process(docs) {
docs.push({
template: 'index.template.html',
outputPath: 'index.html',
path: 'index.html',
buildConfig: buildConfig
});
}
};