https://github.com/angular/angular
Revision 9c2f219a408ddc84826f01d55da15439ac4fae33 authored by Paul Gschwendtner on 01 May 2022, 07:43:09 UTC, committed by Dylan Hunn on 02 May 2022, 16:28:40 UTC
Updates ng-dev to the latest clang-format version which fixes the AMD
x64 binaries.

PR Close #45834
1 parent 6662a97
Raw File
Tip revision: 9c2f219a408ddc84826f01d55da15439ac4fae33 authored by Paul Gschwendtner on 01 May 2022, 07:43:09 UTC
build: update ng-dev with updated clang-format version to fix formatting (#45834)
Tip revision: 9c2f219
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