https://github.com/angular/angular
Revision 3626464f00abd19629e370241899a7d29242f872 authored by Ted.chang on 29 April 2022, 01:52:53 UTC, committed by Andrew Kushnir on 10 May 2022, 23:03:37 UTC
1 parent 5ca3bcf
Raw File
Tip revision: 3626464f00abd19629e370241899a7d29242f872 authored by Ted.chang on 29 April 2022, 01:52:53 UTC
docs: add NGX-YOUI website to resources list (#45810)
Tip revision: 3626464
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