Revision 8e65bdc84821b23ba5e15f056321f840d38ce789 authored by Alex Rickabaugh on 22 February 2024, 01:58:54 UTC, committed by Alex Rickabaugh on 22 February 2024, 02:02:51 UTC
1 parent 0971029
Raw File
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