mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 08:10:11 +01:00
Add smoketest for esbuild packaging
This commit is contained in:
parent
c0b99e4785
commit
208f9218f9
8 changed files with 98 additions and 3 deletions
58
test/smoke/package-esbuild.ts
Normal file
58
test/smoke/package-esbuild.ts
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
import * as esbuild from 'esbuild';
|
||||
import * as path from 'path';
|
||||
import { removeDir } from '../../build/fs';
|
||||
|
||||
removeDir('test/smoke/esbuild/out', (entry) => /esbuild.html$/.test(entry));
|
||||
|
||||
const workerEntryPoints = [
|
||||
'vs/language/json/json.worker.js',
|
||||
'vs/language/css/css.worker.js',
|
||||
'vs/language/html/html.worker.js',
|
||||
'vs/language/typescript/ts.worker.js',
|
||||
'vs/editor/editor.worker.js'
|
||||
];
|
||||
|
||||
build({
|
||||
entryPoints: workerEntryPoints.map((entry) => path.join(__dirname, `../../release/esm/${entry}`)),
|
||||
bundle: true,
|
||||
format: 'iife',
|
||||
logLevel: 'silent',
|
||||
outbase: path.join(__dirname, '../../release/esm/'),
|
||||
outdir: path.join(__dirname, 'esbuild/out')
|
||||
});
|
||||
|
||||
build({
|
||||
entryPoints: [path.join(__dirname, 'esbuild/index.js')],
|
||||
bundle: true,
|
||||
format: 'iife',
|
||||
logLevel: 'silent',
|
||||
outdir: path.join(__dirname, 'esbuild/out'),
|
||||
loader: {
|
||||
'.ttf': 'file'
|
||||
}
|
||||
});
|
||||
|
||||
function build(opts: esbuild.BuildOptions) {
|
||||
esbuild.build(opts).then((result) => {
|
||||
const errors = result.errors;
|
||||
const warnings = result.warnings.filter((w) => {
|
||||
return (
|
||||
w.text !==
|
||||
'Top-level "this" will be replaced with undefined since this file is an ECMAScript module'
|
||||
);
|
||||
});
|
||||
if (errors.length > 0) {
|
||||
console.log(`errors:`);
|
||||
console.error(errors);
|
||||
}
|
||||
if (warnings.length > 0) {
|
||||
console.log(`warnings:`);
|
||||
console.error(warnings);
|
||||
}
|
||||
});
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue