angular-cn/aio/transforms/authors-package/guide-package.js

31 lines
938 B
JavaScript
Raw Normal View History

/**
* @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, getBoilerPlateExcludes } = require('./base-package');
function createPackage(exampleName) {
return new Package('author-guide', [basePackage])
.config(function(readFilesProcessor) {
readFilesProcessor.sourceFiles = [
{
basePath: CONTENTS_PATH,
include: `${CONTENTS_PATH}/guide/${exampleName}.md`,
fileReader: 'contentFileReader'
},
{
basePath: CONTENTS_PATH,
include: `${CONTENTS_PATH}/examples/*${exampleName}/**/*`,
exclude: getBoilerPlateExcludes(),
fileReader: 'exampleFileReader'
}
];
});
}
module.exports = { createPackage };