https://github.com/angular/angular
Raw File
Tip revision: 542d4c7805e890f5c06e301d4c38bc0f0a54804b authored by Alex Rickabaugh on 25 May 2022, 20:48:24 UTC
release: cut the v14.0.0-rc.2 release (#46143)
Tip revision: 542d4c7
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('source-map-test', loadTask('source-map-test'));
gulp.task('changelog:zonejs', loadTask('changelog-zonejs'));
back to top