https://github.com/angular/angular
Revision 7677963bd9bfe56650cf86b3cbf6a2a35153d670 authored by Alex Rickabaugh on 22 February 2023, 21:00:32 UTC, committed by Alex Rickabaugh on 22 February 2023, 21:04:10 UTC
1 parent 03fcb36
Raw File
Tip revision: 7677963bd9bfe56650cf86b3cbf6a2a35153d670 authored by Alex Rickabaugh on 22 February 2023, 21:00:32 UTC
release: cut the v15.2.0 release
Tip revision: 7677963
gulpfile.js
/**
 * @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';

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('changelog:zonejs', loadTask('changelog-zonejs'));
back to top