Revision 4e57cab6d470b2b2b85d1c65fe02da6356072f1d authored by Joe Martin (Crowdstaffing) on 27 October 2021, 18:34:41 UTC, committed by Alex Rickabaugh on 29 October 2021, 23:51:33 UTC
docs: add links to additional information.

PR Close #43964
1 parent a23942e
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('source-map-test', loadTask('source-map-test'));
gulp.task('changelog:zonejs', loadTask('changelog-zonejs'));
back to top