mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-10 14:16:15 -06:00
For #277526 Had to add a few ugly casts in difficult cases but mostly trying to add proper types
59 lines
2.5 KiB
TypeScript
59 lines
2.5 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
import { EventEmitter } from 'events';
|
|
import glob from 'glob';
|
|
import gulp from 'gulp';
|
|
import { createRequire } from 'node:module';
|
|
import { monacoTypecheckTask /* , monacoTypecheckWatchTask */ } from './gulpfile.editor.ts';
|
|
import { compileExtensionMediaTask, compileExtensionsTask, watchExtensionsTask } from './gulpfile.extensions.ts';
|
|
import * as compilation from './lib/compilation.ts';
|
|
import * as task from './lib/task.ts';
|
|
import * as util from './lib/util.ts';
|
|
|
|
EventEmitter.defaultMaxListeners = 100;
|
|
|
|
const require = createRequire(import.meta.url);
|
|
|
|
const { transpileTask, compileTask, watchTask, compileApiProposalNamesTask, watchApiProposalNamesTask } = compilation;
|
|
|
|
// API proposal names
|
|
gulp.task(compileApiProposalNamesTask);
|
|
gulp.task(watchApiProposalNamesTask);
|
|
|
|
// SWC Client Transpile
|
|
const transpileClientSWCTask = task.define('transpile-client-esbuild', task.series(util.rimraf('out'), transpileTask('src', 'out', true)));
|
|
gulp.task(transpileClientSWCTask);
|
|
|
|
// Transpile only
|
|
const transpileClientTask = task.define('transpile-client', task.series(util.rimraf('out'), transpileTask('src', 'out')));
|
|
gulp.task(transpileClientTask);
|
|
|
|
// Fast compile for development time
|
|
const compileClientTask = task.define('compile-client', task.series(util.rimraf('out'), compileApiProposalNamesTask, compileTask('src', 'out', false)));
|
|
gulp.task(compileClientTask);
|
|
|
|
const watchClientTask = task.define('watch-client', task.series(util.rimraf('out'), task.parallel(watchTask('out', false), watchApiProposalNamesTask)));
|
|
gulp.task(watchClientTask);
|
|
|
|
// All
|
|
const _compileTask = task.define('compile', task.parallel(monacoTypecheckTask, compileClientTask, compileExtensionsTask, compileExtensionMediaTask));
|
|
gulp.task(_compileTask);
|
|
|
|
gulp.task(task.define('watch', task.parallel(/* monacoTypecheckWatchTask, */ watchClientTask, watchExtensionsTask)));
|
|
|
|
// Default
|
|
gulp.task('default', _compileTask);
|
|
|
|
process.on('unhandledRejection', (reason, p) => {
|
|
console.log('Unhandled Rejection at: Promise', p, 'reason:', reason);
|
|
process.exit(1);
|
|
});
|
|
|
|
// Load all the gulpfiles only if running tasks other than the editor tasks
|
|
glob.sync('gulpfile.*.ts', { cwd: import.meta.dirname })
|
|
.forEach(f => {
|
|
return require(`./${f}`);
|
|
});
|