2016-10-04 23:39:20 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. 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
|
|
|
|
*/
|
|
|
|
|
2015-04-25 17:45:08 -04:00
|
|
|
'use strict';
|
|
|
|
|
2015-11-14 11:10:31 -05:00
|
|
|
// THIS CHECK SHOULD BE THE FIRST THING IN THIS FILE
|
|
|
|
// This is to ensure that we catch env issues before we error while requiring other dependencies.
|
2017-02-09 14:58:36 -05:00
|
|
|
const engines = require('./package.json').engines;
|
2017-02-22 23:55:25 -05:00
|
|
|
require('./tools/check-environment')({
|
|
|
|
requiredNodeVersion: engines.node,
|
|
|
|
requiredNpmVersion: engines.npm,
|
|
|
|
requiredYarnVersion: engines.yarn
|
|
|
|
});
|
2015-11-14 11:10:31 -05:00
|
|
|
|
2016-05-25 22:54:34 -04:00
|
|
|
const gulp = require('gulp');
|
2015-11-27 02:45:40 -05:00
|
|
|
|
2017-02-03 03:10:41 -05:00
|
|
|
// 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);
|
|
|
|
}
|
2016-06-23 19:23:15 -04:00
|
|
|
|
2019-01-28 19:13:29 -05:00
|
|
|
|
2017-09-07 13:16:03 -04:00
|
|
|
gulp.task('source-map-test', loadTask('source-map-test'));
|
2017-02-22 18:14:49 -05:00
|
|
|
gulp.task('changelog', loadTask('changelog'));
|
2019-07-26 02:50:39 -04:00
|
|
|
gulp.task('changelog:zonejs', loadTask('changelog-zonejs'));
|
2017-02-22 23:55:25 -05:00
|
|
|
gulp.task('check-env', () => {/* this is a noop because the env test ran already above */});
|
2017-07-20 04:54:07 -04:00
|
|
|
gulp.task('cldr:extract', loadTask('cldr', 'extract'));
|
2017-08-21 13:11:07 -04:00
|
|
|
gulp.task('cldr:gen-closure-locale', loadTask('cldr', 'closure'));
|
2020-04-20 16:04:08 -04:00
|
|
|
|
|
|
|
|
|
|
|
// TODO(josephperrott): Remove old task entries and deprecation notice after deprecation period.
|
|
|
|
/** Notify regarding `gulp format:*` deprecation. */
|
|
|
|
function gulpFormatDeprecationNotice() {
|
|
|
|
console.info(`######################################################################`)
|
|
|
|
console.info(`gulp format is deprecated in favor of running the formatter via ng-dev`);
|
|
|
|
console.info();
|
|
|
|
console.info(`You can find more usage information by running:`);
|
|
|
|
console.info(` yarn ng-dev format --help`);
|
|
|
|
console.info();
|
|
|
|
console.info(`For more on the rationale and effects of this deprecation visit:`);
|
|
|
|
console.info(` https://github.com/angular/angular/pull/36726#issue-406278018`);
|
|
|
|
console.info(`######################################################################`)
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
gulp.task('format:all', gulpFormatDeprecationNotice);
|
|
|
|
gulp.task('format:all:enforce', gulpFormatDeprecationNotice);
|
|
|
|
gulp.task('format:untracked', gulpFormatDeprecationNotice);
|
|
|
|
gulp.task('format:untracked:enforce', gulpFormatDeprecationNotice);
|
|
|
|
gulp.task('format:diff', gulpFormatDeprecationNotice);
|
|
|
|
gulp.task('format:diff:enforce', gulpFormatDeprecationNotice);
|
|
|
|
gulp.task('format:changed', gulpFormatDeprecationNotice);
|
|
|
|
gulp.task('format:changed:enforce', gulpFormatDeprecationNotice);
|
|
|
|
gulp.task('format', gulpFormatDeprecationNotice);
|
|
|
|
gulp.task('lint', gulpFormatDeprecationNotice);
|