| 
									
										
										
										
											2017-04-16 20:48:22 +01:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							| 
									
										
										
										
											2020-05-19 12:08:49 -07:00
										 |  |  |  * Copyright Google LLC All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2017-04-16 20:48:22 +01:00
										 |  |  |  * | 
					
						
							|  |  |  |  * 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; | 
					
						
							| 
									
										
										
										
											2017-04-21 13:10:52 +01:00
										 |  |  | const contentPackage = require('../angular-content-package'); | 
					
						
							|  |  |  | const { CONTENTS_PATH } = require('../config'); | 
					
						
							| 
									
										
										
										
											2017-04-16 20:48:22 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | function createPackage() { | 
					
						
							| 
									
										
										
										
											2017-04-21 13:10:52 +01:00
										 |  |  |   return new Package('author-marketing', [contentPackage]) | 
					
						
							| 
									
										
										
										
											2017-04-16 20:48:22 +01:00
										 |  |  |     .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' | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |       ]; | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-19 12:08:49 -07:00
										 |  |  | module.exports = { createPackage }; |