mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
2edb9bc9ca
Revert "Revert e7fffbf1c9169087f1098aedfe54c59c079fa3ac"
This reverts commit 6786b0ad7d
.
Two changes:
- Lazy import parcel/watcher
- Add `@parcel/watcher` as a dev dep in extensions folder so that we pull in correct version for build os
53 lines
1.4 KiB
JavaScript
53 lines
1.4 KiB
JavaScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
// @ts-check
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
const esbuild = require('esbuild');
|
|
|
|
const args = process.argv.slice(2);
|
|
|
|
const isWatch = args.indexOf('--watch') >= 0;
|
|
|
|
let outputRoot = __dirname;
|
|
const outputRootIndex = args.indexOf('--outputRoot');
|
|
if (outputRootIndex >= 0) {
|
|
outputRoot = args[outputRootIndex + 1];
|
|
}
|
|
|
|
const srcDir = path.join(__dirname, 'preview-src');
|
|
const outDir = path.join(outputRoot, 'media');
|
|
|
|
async function build() {
|
|
fs.copyFileSync(
|
|
path.join(__dirname, 'node_modules', 'vscode-codicons', 'dist', 'codicon.css'),
|
|
path.join(outDir, 'codicon.css'));
|
|
|
|
fs.copyFileSync(
|
|
path.join(__dirname, 'node_modules', 'vscode-codicons', 'dist', 'codicon.ttf'),
|
|
path.join(outDir, 'codicon.ttf'));
|
|
|
|
await esbuild.build({
|
|
entryPoints: [
|
|
path.join(srcDir, 'index.ts')
|
|
],
|
|
bundle: true,
|
|
minify: true,
|
|
sourcemap: false,
|
|
format: 'esm',
|
|
outdir: outDir,
|
|
platform: 'browser',
|
|
target: ['es2020'],
|
|
});
|
|
}
|
|
|
|
build().catch(() => process.exit(1));
|
|
|
|
if (isWatch) {
|
|
const watcher = require('@parcel/watcher');
|
|
watcher.subscribe(srcDir, () => {
|
|
return build();
|
|
});
|
|
}
|