| 
									
										
										
										
											2016-10-04 20:39:20 -07: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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-25 14:45:08 -07:00
										 |  |  | 'use strict'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-14 08:10:31 -08:00
										 |  |  | // THIS CHECK SHOULD BE THE FIRST THING IN THIS FILE
 | 
					
						
							|  |  |  | // This is to ensure that we catch env issues before we error while requiring other dependencies.
 | 
					
						
							| 
									
										
										
										
											2017-02-09 19:58:36 +00:00
										 |  |  | const engines = require('./package.json').engines; | 
					
						
							| 
									
										
										
										
											2017-02-23 06:55:25 +02:00
										 |  |  | require('./tools/check-environment')({ | 
					
						
							|  |  |  |   requiredNodeVersion: engines.node, | 
					
						
							|  |  |  |   requiredNpmVersion: engines.npm, | 
					
						
							|  |  |  |   requiredYarnVersion: engines.yarn | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2015-11-14 08:10:31 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-25 19:54:34 -07:00
										 |  |  | const gulp = require('gulp'); | 
					
						
							| 
									
										
										
										
											2015-11-26 23:45:40 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-03 08:10:41 +00:00
										 |  |  | // See `tools/gulp-tasks/README.md` for information about task loading.
 | 
					
						
							|  |  |  | function loadTask(fileName, taskName) { | 
					
						
							|  |  |  |   const taskModule = require('./tools/gulp-tasks/' + fileName); | 
					
						
							|  |  |  |   const task = taskName ? taskModule[taskName] : taskModule; | 
					
						
							|  |  |  |   return task(gulp); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-06-23 16:23:15 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-28 16:13:29 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-07 10:16:03 -07:00
										 |  |  | gulp.task('source-map-test', loadTask('source-map-test')); | 
					
						
							| 
									
										
										
										
											2017-02-22 15:14:49 -08:00
										 |  |  | gulp.task('changelog', loadTask('changelog')); | 
					
						
							| 
									
										
										
										
											2019-07-25 23:50:39 -07:00
										 |  |  | gulp.task('changelog:zonejs', loadTask('changelog-zonejs')); | 
					
						
							| 
									
										
										
										
											2017-02-23 06:55:25 +02:00
										 |  |  | gulp.task('check-env', () => {/* this is a noop because the env test ran already above */}); | 
					
						
							| 
									
										
										
										
											2017-07-20 10:54:07 +02:00
										 |  |  | gulp.task('cldr:extract', loadTask('cldr', 'extract')); | 
					
						
							| 
									
										
										
										
											2017-08-21 19:11:07 +02:00
										 |  |  | gulp.task('cldr:gen-closure-locale', loadTask('cldr', 'closure')); | 
					
						
							| 
									
										
										
										
											2020-04-20 13:04:08 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // TODO(josephperrott): Remove old task entries and deprecation notice after deprecation period.
 | 
					
						
							|  |  |  | /** Notify regarding `gulp format:*` deprecation. */ | 
					
						
							|  |  |  | function gulpFormatDeprecationNotice() { | 
					
						
							|  |  |  |   console.info(`######################################################################`) | 
					
						
							|  |  |  |   console.info(`gulp format is deprecated in favor of running the formatter via ng-dev`); | 
					
						
							|  |  |  |   console.info(); | 
					
						
							|  |  |  |   console.info(`You can find more usage information by running:`); | 
					
						
							|  |  |  |   console.info(`  yarn ng-dev format --help`); | 
					
						
							|  |  |  |   console.info(); | 
					
						
							|  |  |  |   console.info(`For more on the rationale and effects of this deprecation visit:`); | 
					
						
							|  |  |  |   console.info(`  https://github.com/angular/angular/pull/36726#issue-406278018`); | 
					
						
							|  |  |  |   console.info(`######################################################################`) | 
					
						
							|  |  |  |   process.exit(1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | gulp.task('format:all', gulpFormatDeprecationNotice); | 
					
						
							|  |  |  | gulp.task('format:all:enforce', gulpFormatDeprecationNotice); | 
					
						
							|  |  |  | gulp.task('format:untracked', gulpFormatDeprecationNotice); | 
					
						
							|  |  |  | gulp.task('format:untracked:enforce', gulpFormatDeprecationNotice); | 
					
						
							|  |  |  | gulp.task('format:diff', gulpFormatDeprecationNotice); | 
					
						
							|  |  |  | gulp.task('format:diff:enforce', gulpFormatDeprecationNotice); | 
					
						
							|  |  |  | gulp.task('format:changed', gulpFormatDeprecationNotice); | 
					
						
							|  |  |  | gulp.task('format:changed:enforce', gulpFormatDeprecationNotice); | 
					
						
							|  |  |  | gulp.task('format', gulpFormatDeprecationNotice); | 
					
						
							|  |  |  | gulp.task('lint', gulpFormatDeprecationNotice); |