| 
									
										
										
										
											2020-02-29 22:25:49 +02:00
										 |  |  | #!/usr/bin/env node
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							| 
									
										
										
										
											2020-05-19 12:08:49 -07:00
										 |  |  |  * Copyright Google LLC All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2020-02-29 22:25:49 +02: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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 'use strict'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const {buildZoneJsPackage} = require('./zone-js-builder'); | 
					
						
							| 
									
										
										
										
											2020-03-04 09:42:45 -08:00
										 |  |  | const {buildDevInfraPackage} = require('./dev-infra-builder'); | 
					
						
							| 
									
										
										
										
											2020-02-29 22:25:49 +02:00
										 |  |  | const {buildTargetPackages} = require('./package-builder'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Build the legacy (view engine) npm packages into `dist/packages-dist/`.
 | 
					
						
							|  |  |  | buildTargetPackages('dist/packages-dist', false, 'Production'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Build the `zone.js` npm package into `dist/zone.js-dist/`, because it might be needed by other
 | 
					
						
							|  |  |  | // scripts/tests.
 | 
					
						
							| 
									
										
										
										
											2020-02-29 21:05:23 +02:00
										 |  |  | buildZoneJsPackage('dist/zone.js-dist'); | 
					
						
							| 
									
										
										
										
											2020-03-04 09:42:45 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | // Build the `angular-dev-infra` npm package into `dist/packages-dist/@angular/dev-infra-private`
 | 
					
						
							|  |  |  | buildDevInfraPackage(); |