Revision 06ffe9a021a1f454392a6bcb0c18e36051bb2629 authored by Tommy Gaessler on 26 October 2023, 22:48:08 UTC, committed by Pawel Kozlowski on 28 February 2024, 16:35:10 UTC
Updated the "Setting up Zone.js" instructions to the latest convention from
how the Angular CLI configures it.
Include adding zone-flats.ts to the tsconfig.app.json file step.
Added src/ to zone-flag.ts in the code example.

PR Close #52409
1 parent c1590e7
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('changelog:zonejs', loadTask('changelog-zonejs'));
back to top