| 
									
										
										
										
											2016-10-23 22:37:15 +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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-23 13:49:57 -08:00
										 |  |  | /* tslint:disable:no-console  */ | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | import {spawn} from 'child_process'; | 
					
						
							| 
									
										
										
										
											2016-06-08 11:14:43 -07:00
										 |  |  | import {existsSync, mkdirSync, writeFileSync} from 'fs'; | 
					
						
							| 
									
										
										
										
											2016-05-26 10:45:37 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 11:14:43 -07:00
										 |  |  | import {TSC, TscWatch, reportError} from './tsc_watch'; | 
					
						
							| 
									
										
										
										
											2016-05-26 10:45:37 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | export * from './tsc_watch'; | 
					
						
							|  |  |  | import 'reflect-metadata'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function md(dir: string, folders: string[]) { | 
					
						
							|  |  |  |   if (folders.length) { | 
					
						
							| 
									
										
										
										
											2016-11-12 14:08:58 +01:00
										 |  |  |     const next = folders.shift(); | 
					
						
							|  |  |  |     const path = dir + '/' + next; | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  |     if (!existsSync(path)) { | 
					
						
							|  |  |  |       mkdirSync(path); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     md(path, folders); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-12 14:08:58 +01:00
										 |  |  | let tscWatch: TscWatch = null; | 
					
						
							|  |  |  | const platform = process.argv.length >= 3 ? process.argv[2] : null; | 
					
						
							|  |  |  | const runMode: string = process.argv.length >= 4 ? process.argv[3] : null; | 
					
						
							| 
									
										
										
										
											2016-07-29 14:10:20 -07:00
										 |  |  | const BaseConfig = { | 
					
						
							|  |  |  |   start: 'File change detected. Starting incremental compilation...', | 
					
						
							|  |  |  |   error: 'error', | 
					
						
							|  |  |  |   complete: 'Compilation complete. Watching for file changes.' | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | if (platform == 'node') { | 
					
						
							| 
									
										
										
										
											2016-07-29 14:45:05 -07:00
										 |  |  |   tscWatch = new TscWatch(Object.assign( | 
					
						
							|  |  |  |       { | 
					
						
							| 
									
										
										
										
											2017-03-07 11:04:30 -08:00
										 |  |  |         tsconfig: 'packages/tsconfig.json', | 
					
						
							| 
									
										
										
										
											2016-11-23 14:47:05 -08:00
										 |  |  |         onChangeCmds: [[ | 
					
						
							|  |  |  |           'node', 'dist/tools/cjs-jasmine', '--', '@angular/**/*_spec.js', | 
					
						
							|  |  |  |           '@angular/compiler-cli/test/**/*_spec.js', '@angular/benchpress/test/**/*_spec.js' | 
					
						
							|  |  |  |         ]] | 
					
						
							| 
									
										
										
										
											2016-07-29 14:45:05 -07:00
										 |  |  |       }, | 
					
						
							|  |  |  |       BaseConfig)); | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | } else if (platform == 'browser') { | 
					
						
							| 
									
										
										
										
											2016-07-29 14:45:05 -07:00
										 |  |  |   tscWatch = new TscWatch(Object.assign( | 
					
						
							|  |  |  |       { | 
					
						
							| 
									
										
										
										
											2017-03-07 11:04:30 -08:00
										 |  |  |         tsconfig: 'packages/tsconfig.json', | 
					
						
							| 
									
										
										
										
											2016-07-29 14:45:05 -07:00
										 |  |  |         onStartCmds: [ | 
					
						
							|  |  |  |           [ | 
					
						
							|  |  |  |             'node', 'node_modules/karma/bin/karma', 'start', '--no-auto-watch', '--port=9876', | 
					
						
							|  |  |  |             'karma-js.conf.js' | 
					
						
							|  |  |  |           ], | 
					
						
							|  |  |  |           [ | 
					
						
							|  |  |  |             'node', 'node_modules/karma/bin/karma', 'start', '--no-auto-watch', '--port=9877', | 
					
						
							| 
									
										
										
										
											2017-03-07 11:04:30 -08:00
										 |  |  |             'packages/router/karma.conf.js' | 
					
						
							| 
									
										
										
										
											2016-07-29 14:45:05 -07:00
										 |  |  |           ], | 
					
						
							|  |  |  |         ], | 
					
						
							|  |  |  |         onChangeCmds: [ | 
					
						
							|  |  |  |           ['node', 'node_modules/karma/bin/karma', 'run', 'karma-js.conf.js', '--port=9876'], | 
					
						
							|  |  |  |           ['node', 'node_modules/karma/bin/karma', 'run', '--port=9877'], | 
					
						
							| 
									
										
										
										
											2016-08-30 18:07:40 -07:00
										 |  |  |         ] | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |       BaseConfig)); | 
					
						
							|  |  |  | } else if (platform == 'router') { | 
					
						
							|  |  |  |   tscWatch = new TscWatch(Object.assign( | 
					
						
							|  |  |  |       { | 
					
						
							| 
									
										
										
										
											2017-03-07 11:04:30 -08:00
										 |  |  |         tsconfig: 'packages/tsconfig.json', | 
					
						
							| 
									
										
										
										
											2016-08-30 18:07:40 -07:00
										 |  |  |         onStartCmds: [ | 
					
						
							|  |  |  |           [ | 
					
						
							|  |  |  |             'node', 'node_modules/karma/bin/karma', 'start', '--no-auto-watch', '--port=9877', | 
					
						
							| 
									
										
										
										
											2017-03-07 11:04:30 -08:00
										 |  |  |             'packages/router/karma.conf.js' | 
					
						
							| 
									
										
										
										
											2016-08-30 18:07:40 -07:00
										 |  |  |           ], | 
					
						
							|  |  |  |         ], | 
					
						
							|  |  |  |         onChangeCmds: [ | 
					
						
							|  |  |  |           ['node', 'node_modules/karma/bin/karma', 'run', '--port=9877'], | 
					
						
							| 
									
										
										
										
											2016-07-29 14:45:05 -07:00
										 |  |  |         ] | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |       BaseConfig)); | 
					
						
							| 
									
										
										
										
											2016-07-29 14:10:20 -07:00
										 |  |  | } else if (platform == 'browserNoRouter') { | 
					
						
							| 
									
										
										
										
											2016-07-29 14:45:05 -07:00
										 |  |  |   tscWatch = new TscWatch(Object.assign( | 
					
						
							|  |  |  |       { | 
					
						
							| 
									
										
										
										
											2017-03-07 11:04:30 -08:00
										 |  |  |         tsconfig: 'packages/tsconfig.json', | 
					
						
							| 
									
										
										
										
											2016-07-29 14:45:05 -07:00
										 |  |  |         onStartCmds: [[ | 
					
						
							|  |  |  |           'node', 'node_modules/karma/bin/karma', 'start', '--no-auto-watch', '--port=9876', | 
					
						
							|  |  |  |           'karma-js.conf.js' | 
					
						
							|  |  |  |         ]], | 
					
						
							|  |  |  |         onChangeCmds: [ | 
					
						
							|  |  |  |           ['node', 'node_modules/karma/bin/karma', 'run', 'karma-js.conf.js', '--port=9876'], | 
					
						
							|  |  |  |         ] | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |       BaseConfig)); | 
					
						
							| 
									
										
										
										
											2016-05-03 09:24:09 -07:00
										 |  |  | } else if (platform == 'tools') { | 
					
						
							| 
									
										
										
										
											2016-07-29 14:45:05 -07:00
										 |  |  |   tscWatch = new TscWatch(Object.assign( | 
					
						
							|  |  |  |       { | 
					
						
							|  |  |  |         tsconfig: 'tools/tsconfig.json', | 
					
						
							|  |  |  |         onChangeCmds: [[ | 
					
						
							|  |  |  |           'node', 'dist/tools/cjs-jasmine/index-tools', '--', | 
					
						
							|  |  |  |           '@angular/tsc-wrapped/**/*{_,.}spec.js' | 
					
						
							|  |  |  |         ]] | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |       BaseConfig)); | 
					
						
							| 
									
										
										
										
											2016-07-21 16:12:40 -07:00
										 |  |  | } else { | 
					
						
							|  |  |  |   throw new Error(`unknown platform: ${platform}`); | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-03 09:24:09 -07:00
										 |  |  | if (runMode === 'watch') { | 
					
						
							|  |  |  |   tscWatch.watch(); | 
					
						
							| 
									
										
										
										
											2016-05-04 20:01:17 -07:00
										 |  |  | } else if (runMode === 'runCmdsOnly') { | 
					
						
							|  |  |  |   tscWatch.runCmdsOnly(); | 
					
						
							| 
									
										
										
										
											2016-05-03 09:24:09 -07:00
										 |  |  | } else { | 
					
						
							|  |  |  |   tscWatch.run(); | 
					
						
							|  |  |  | } |