mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 07:00:11 +01:00
Fix #2843
This commit is contained in:
parent
3ad48dbde4
commit
a8878c8cfe
8 changed files with 118 additions and 79 deletions
|
|
@ -1,8 +1,15 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* 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 esbuild = require('esbuild');
|
||||
const path = require('path');
|
||||
const { removeDir } = require('../../build/utils');
|
||||
const { removeDir } = require('../../build/fs');
|
||||
|
||||
removeDir(path.join(__dirname, 'dist'));
|
||||
removeDir('samples/browser-esm-esbuild/dist', (entry) => /index.html$/.test(entry));
|
||||
|
||||
const workerEntryPoints = [
|
||||
'vs/language/json/json.worker.js',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue