https://github.com/angular/angular
Revision 0dbd50bea5be80f64af0f50aee04ca3530d9c7e7 authored by Renovate Bot on 12 March 2022, 10:38:13 UTC, committed by Andrew Scott on 14 March 2022, 16:23:42 UTC
1 parent 7f043c9
Raw File
Tip revision: 0dbd50bea5be80f64af0f50aee04ca3530d9c7e7 authored by Renovate Bot on 12 March 2022, 10:38:13 UTC
build: update dependency eslint-plugin-jsdoc to v38 (#45332)
Tip revision: 0dbd50b
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