forked from angular/angular
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulpfile.js
More file actions
Latest commit
21 lines (16 loc) · 572 Bytes
/
Copy pathgulpfile.js
File metadata and controls
21 lines (16 loc) · 572 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
* @license
* Copyright Google LLC 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';
constgulp=require('gulp');
// See `tools/gulp-tasks/README.md` for information about task loading.
functionloadTask(fileName,taskName){
consttaskModule=require('./tools/gulp-tasks/'+fileName);
consttask=taskName ? taskModule[taskName] : taskModule;
returntask(gulp);
}
gulp.task('changelog:zonejs',loadTask('changelog-zonejs'));