| 
									
										
										
										
											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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-03 08:10:41 +00:00
										 |  |  | module.exports = { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // Serve the built files
 | 
					
						
							|  |  |  |   default: (gulp) => () => { | 
					
						
							|  |  |  |     const connect = require('gulp-connect'); | 
					
						
							|  |  |  |     const cors = require('cors'); | 
					
						
							|  |  |  |     const path = require('path'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     connect.server({ | 
					
						
							|  |  |  |       root: path.resolve(__dirname, '../../dist'), | 
					
						
							|  |  |  |       port: 8000, | 
					
						
							|  |  |  |       livereload: false, | 
					
						
							|  |  |  |       open: false, | 
					
						
							|  |  |  |       middleware: (connect, opt) => [cors()], | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // Serve the examples
 | 
					
						
							|  |  |  |   examples: (gulp) => () => { | 
					
						
							|  |  |  |     const connect = require('gulp-connect'); | 
					
						
							|  |  |  |     const cors = require('cors'); | 
					
						
							|  |  |  |     const path = require('path'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     connect.server({ | 
					
						
							|  |  |  |       root: path.resolve(__dirname, '../../dist/examples'), | 
					
						
							|  |  |  |       port: 8001, | 
					
						
							|  |  |  |       livereload: false, | 
					
						
							|  |  |  |       open: false, | 
					
						
							|  |  |  |       middleware: (connect, opt) => [cors()], | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }; |