mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-14 23:18:36 +00:00
* Revert "Revert codicon change (#289683)"
This reverts commit de6f371a92.
* Always run postinstall
* Two more places
* Move codicon copy into compilation
* Fix pipelines
* Update readme
* Fix watch task
* Move copy codicons
* MIssed some spots
* Error handing
* Fix path
28 lines
1.4 KiB
TypeScript
28 lines
1.4 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 gulp from 'gulp';
|
|
import * as util from './lib/util.ts';
|
|
import * as date from './lib/date.ts';
|
|
import * as task from './lib/task.ts';
|
|
import * as compilation from './lib/compilation.ts';
|
|
|
|
function makeCompileBuildTask(disableMangle: boolean) {
|
|
return task.series(
|
|
util.rimraf('out-build'),
|
|
date.writeISODate('out-build'),
|
|
compilation.compileApiProposalNamesTask,
|
|
compilation.compileTask('src', 'out-build', true, { disableMangle })
|
|
);
|
|
}
|
|
|
|
// Local/PR compile, including nls and inline sources in sourcemaps, minification, no mangling
|
|
export const compileBuildWithoutManglingTask = task.define('compile-build-without-mangling', task.series(compilation.copyCodiconsTask, makeCompileBuildTask(true)));
|
|
gulp.task(compileBuildWithoutManglingTask);
|
|
|
|
// CI compile, including nls and inline sources in sourcemaps, mangling, minification, for build
|
|
export const compileBuildWithManglingTask = task.define('compile-build-with-mangling', task.series(compilation.copyCodiconsTask, makeCompileBuildTask(false)));
|
|
gulp.task(compileBuildWithManglingTask);
|