| 
									
										
										
										
											2017-09-22 19:51:03 +02:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // tslint:disable:no-console
 | 
					
						
							| 
									
										
										
										
											2017-02-03 08:10:41 +00:00
										 |  |  | module.exports = (gulp) => (done) => { | 
					
						
							|  |  |  |   const madge = require('madge'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   const dependencyObject = madge(['dist/all/'], { | 
					
						
							|  |  |  |     format: 'cjs', | 
					
						
							|  |  |  |     extensions: ['.js'], | 
					
						
							|  |  |  |     onParseFile: function(data) { data.src = data.src.replace(/\/\* circular \*\//g, '//'); } | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   const circularDependencies = dependencyObject.circular().getArray(); | 
					
						
							|  |  |  |   if (circularDependencies.length > 0) { | 
					
						
							|  |  |  |     console.log('Found circular dependencies!'); | 
					
						
							|  |  |  |     console.log(circularDependencies); | 
					
						
							|  |  |  |     process.exit(1); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   done(); | 
					
						
							|  |  |  | }; |