41 lines
1.2 KiB
JavaScript
41 lines
1.2 KiB
JavaScript
|
/**
|
||
|
* @license
|
||
|
* Copyright Google Inc. All Rights Reserved.
|
||
|
*
|
||
|
* Use of this source code is governed by an MIT-style license that can be
|
||
|
* found in the LICENSE file at https://angular.io/license
|
||
|
*/
|
||
|
const Package = require('dgeni').Package;
|
||
|
const { basePackage, CONTENTS_PATH } = require('./base-package');
|
||
|
|
||
|
function createPackage() {
|
||
|
return new Package('author-marketing', [basePackage])
|
||
|
.config(function(readFilesProcessor) {
|
||
|
readFilesProcessor.sourceFiles = [
|
||
|
{
|
||
|
basePath: CONTENTS_PATH + '/marketing',
|
||
|
include: CONTENTS_PATH + '/marketing/**/*.{html,md}',
|
||
|
fileReader: 'contentFileReader'
|
||
|
},
|
||
|
{
|
||
|
basePath: CONTENTS_PATH,
|
||
|
include: CONTENTS_PATH + '/*.md',
|
||
|
exclude: [CONTENTS_PATH + '/index.md'],
|
||
|
fileReader: 'contentFileReader'
|
||
|
},
|
||
|
{
|
||
|
basePath: CONTENTS_PATH,
|
||
|
include: CONTENTS_PATH + '/marketing/*.json',
|
||
|
fileReader: 'jsonFileReader'
|
||
|
},
|
||
|
{
|
||
|
basePath: CONTENTS_PATH,
|
||
|
include: CONTENTS_PATH + '/navigation.json',
|
||
|
fileReader: 'jsonFileReader'
|
||
|
},
|
||
|
];
|
||
|
});
|
||
|
}
|
||
|
|
||
|
|
||
|
module.exports = { createPackage };
|