This is a precursor to bringing in some of the gulp tasks from angular.io, which could lead to the gulpfile becoming unwieldy.
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /**
 | |
|  * @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
 | |
|  */
 | |
| 
 | |
| 'use strict';
 | |
| 
 | |
| // 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.
 | |
| require('./tools/check-environment')({
 | |
|   requiredNpmVersion: '>=3.10.7 <4.0.0',
 | |
|   requiredNodeVersion: '>=6.9.5 <7.0.0',
 | |
| });
 | |
| 
 | |
| const gulp = require('gulp');
 | |
| 
 | |
| // 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);
 | |
| }
 | |
| 
 | |
| gulp.task('format:enforce', loadTask('format', 'enforce'));
 | |
| gulp.task('format', loadTask('format', 'format'));
 | |
| gulp.task('build.sh', loadTask('build'));
 | |
| gulp.task('public-api:enforce', loadTask('public-api', 'enforce'));
 | |
| gulp.task('public-api:update', ['build.sh'], loadTask('public-api', 'update'));
 | |
| gulp.task('lint', ['format:enforce', 'tools:build'], loadTask('lint'));
 | |
| gulp.task('validate-commit-messages', loadTask('validate-commit-message'));
 | |
| gulp.task('tools:build', loadTask('tools-build'));
 | |
| gulp.task('check-cycle', loadTask('check-cycle'));
 | |
| gulp.task('serve', loadTask('serve', 'default'));
 | |
| gulp.task('serve-examples', loadTask('serve', 'examples'));
 | |
| gulp.task('changelog', loadTask('changelog'));
 | |
| gulp.task('docs', ['doc-gen', 'docs-app']);
 | |
| gulp.task('doc-gen', loadTask('docs', 'generate'));
 | |
| gulp.task('doc-gen-test', loadTask('docs', 'test'));
 | |
| gulp.task('docs-app', loadTask('docs-app'));
 | |
| gulp.task('docs-app-test', () => {});
 | |
| gulp.task('docs-test', ['doc-gen-test', 'docs-app-test']);
 |