2016-10-05 03:39:20 +00:00
|
|
|
/**
|
|
|
|
|
* @license
|
2020-05-19 19:08:49 +00:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2016-10-05 03:39:20 +00:00
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
2024-09-20 15:23:15 +00:00
|
|
|
* found in the LICENSE file at https://angular.dev/license
|
2016-10-05 03:39:20 +00:00
|
|
|
*/
|
|
|
|
|
|
2015-04-25 21:45:08 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
2016-05-26 02:54:34 +00:00
|
|
|
const gulp = require('gulp');
|
2015-11-27 07:45:40 +00: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 23:23:15 +00:00
|
|
|
|
2019-07-26 06:50:39 +00:00
|
|
|
gulp.task('changelog:zonejs', loadTask('changelog-zonejs'));
|