This new `base-authoring-package` captures all the settings, which turns of potentially fatal checks, in one place. This new package is then used as a base for all the docs-watch related packages, rather than dotting the settings in a variety of different packages. This also has the benefit that the standard configuration for doc-gen is fatal on failed checks by default. PR Close #40479
		
			
				
	
	
		
			126 lines
		
	
	
		
			4.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			126 lines
		
	
	
		
			4.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/**
 | 
						|
 * @license
 | 
						|
 * Copyright Google LLC 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 glob = require('glob');
 | 
						|
const ignore = require('ignore');
 | 
						|
const fs = require('fs');
 | 
						|
const path = require('canonical-path');
 | 
						|
const basePackage = require('../angular-base-package');
 | 
						|
const contentPackage = require('../content-package');
 | 
						|
 | 
						|
const { CONTENTS_PATH, GUIDE_EXAMPLES_PATH } = require('../config');
 | 
						|
 | 
						|
module.exports = new Package('angular-content', [basePackage, contentPackage])
 | 
						|
 | 
						|
  // Where do we get the source files?
 | 
						|
  .config(function(readFilesProcessor, collectExamples) {
 | 
						|
 | 
						|
    const gitignoreFilePath = path.resolve(GUIDE_EXAMPLES_PATH, '.gitignore');
 | 
						|
    const gitignoreFile = fs.readFileSync(gitignoreFilePath, 'utf8');
 | 
						|
    const gitignore = ignore().add(gitignoreFile);
 | 
						|
 | 
						|
    const examplePaths = glob.sync('**/*', { cwd: GUIDE_EXAMPLES_PATH, dot: true, ignore: '**/node_modules/**', mark: true })
 | 
						|
                            .filter(filePath => filePath !== '.gitignore') // we are not interested in the .gitignore file itself
 | 
						|
                            .filter(filePath => !/\/$/.test(filePath)); // this filter removes the folders, leaving only files
 | 
						|
    const ignoredExamplePaths = [];
 | 
						|
    const resolvedExamplePaths = [];
 | 
						|
 | 
						|
    examplePaths.forEach(filePath => {
 | 
						|
      // filter out files that match the .gitignore rules
 | 
						|
      if (gitignore.ignores(filePath)) {
 | 
						|
        ignoredExamplePaths.push(filePath);
 | 
						|
      } else {
 | 
						|
        // we need the full paths for the filereader
 | 
						|
        resolvedExamplePaths.push(path.resolve(GUIDE_EXAMPLES_PATH, filePath));
 | 
						|
      }
 | 
						|
    });
 | 
						|
 | 
						|
    readFilesProcessor.sourceFiles = readFilesProcessor.sourceFiles.concat([
 | 
						|
      {
 | 
						|
        basePath: CONTENTS_PATH,
 | 
						|
        include: CONTENTS_PATH + '/{start,guide,tutorial}/**/*.md',
 | 
						|
        fileReader: 'contentFileReader'
 | 
						|
      },
 | 
						|
      {
 | 
						|
        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: resolvedExamplePaths,
 | 
						|
        fileReader: 'exampleFileReader'
 | 
						|
      },
 | 
						|
      {
 | 
						|
        basePath: CONTENTS_PATH,
 | 
						|
        include: CONTENTS_PATH + '/navigation.json',
 | 
						|
        fileReader: 'jsonFileReader'
 | 
						|
      },
 | 
						|
      {
 | 
						|
        basePath: CONTENTS_PATH,
 | 
						|
        include: CONTENTS_PATH + '/marketing/announcements.json',
 | 
						|
        fileReader: 'jsonFileReader'
 | 
						|
      },
 | 
						|
      {
 | 
						|
        basePath: CONTENTS_PATH,
 | 
						|
        include: CONTENTS_PATH + '/marketing/contributors.json',
 | 
						|
        fileReader: 'jsonFileReader'
 | 
						|
      },
 | 
						|
      {
 | 
						|
        basePath: CONTENTS_PATH,
 | 
						|
        include: CONTENTS_PATH + '/marketing/resources.json',
 | 
						|
        fileReader: 'jsonFileReader'
 | 
						|
      },
 | 
						|
      {
 | 
						|
        basePath: CONTENTS_PATH,
 | 
						|
        include: CONTENTS_PATH + '/marketing/events.json',
 | 
						|
        fileReader: 'jsonFileReader'
 | 
						|
      },
 | 
						|
    ]);
 | 
						|
 | 
						|
    collectExamples.exampleFolders.push('examples');
 | 
						|
    collectExamples.registerIgnoredExamples(ignoredExamplePaths, gitignoreFilePath);
 | 
						|
  })
 | 
						|
 | 
						|
 | 
						|
  // Configure jsdoc-style tag parsing
 | 
						|
  .config(function(inlineTagProcessor) {
 | 
						|
    inlineTagProcessor.inlineTagDefinitions.push(require('./inline-tag-defs/anchor'));
 | 
						|
  })
 | 
						|
 | 
						|
 | 
						|
  .config(function(computePathsProcessor) {
 | 
						|
 | 
						|
    // Replace any path templates inherited from other packages
 | 
						|
    // (we want full and transparent control)
 | 
						|
    computePathsProcessor.pathTemplates = computePathsProcessor.pathTemplates.concat([
 | 
						|
      {
 | 
						|
        docTypes: ['content'],
 | 
						|
        getPath: (doc) => `${doc.id.replace(/\/index$/, '')}`,
 | 
						|
        outputPathTemplate: '${path}.json'
 | 
						|
      },
 | 
						|
      {docTypes: ['navigation-json'], pathTemplate: '${id}', outputPathTemplate: '../${id}.json'},
 | 
						|
      {docTypes: ['contributors-json'], pathTemplate: '${id}', outputPathTemplate: '../${id}.json'},
 | 
						|
      {docTypes: ['announcements-json'], pathTemplate: '${id}', outputPathTemplate: '../${id}.json'},
 | 
						|
      {docTypes: ['resources-json'], pathTemplate: '${id}', outputPathTemplate: '../${id}.json'},
 | 
						|
      {docTypes: ['events-json'], pathTemplate: '${id}', outputPathTemplate: '../${id}.json'}
 | 
						|
    ]);
 | 
						|
  })
 | 
						|
 | 
						|
  // We want the content files to be converted
 | 
						|
  .config(function(convertToJsonProcessor, postProcessHtml) {
 | 
						|
    convertToJsonProcessor.docTypes.push('content');
 | 
						|
    postProcessHtml.docTypes.push('content');
 | 
						|
  });
 |