mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-11 18:41:06 -06:00
* feat: move from yarn to npm * chore: skip yarn.lock files * fix: playwright download * chore: fix compile and hygiene * chore: bump vsce@2.17.0 Refs8b49e9dfdf* test: update results for bat and sh colorizer tests * fix: add missing lock files for windows * fix: switch to legacy-peer-deps * chore: update markdown-it@14.1.0 Refs737c95a129esbuild step in extensions-ci-pr was previously using markdown-it from root which had userland punycode and was able to compile successfully. * ci: increase pr timeout for windows integration tests * chore: fix product build * build: ignore extension dev dependency for rcedit * build: fix working directory inside container * build: fix dependency generation * npm: update dependencies * ci: use global npmrc * ci: update cache * ci: setup global npmrc for private npm auth * build: fix extension bundling * chore: sync npm dependencies * ci: debug env variables for container * ci: fix win32 cli pipeline * build: fix npmrc config usage for build/ and remote/ dirs * fix: windows build * fix: container builds * fix: markdown-language-features tests and bundling ``` [03:58:22] Error: Command failed: /Users/demohan/.nvm/versions/node/v20.15.1/bin/node /Users/demohan/github/vscode/extensions/markdown-language-features/esbuild-notebook.js --outputRoot /Users/demohan/github/vscode/.build/extensions/markdown-language-features ✘ [ERROR] Could not resolve "punycode" extensions/markdown-language-features/node_modules/markdown-it/lib/index.js:14:27: 14 │ var punycode = require('punycode'); ╵ ~~~~~~~~~~ The package "punycode" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error. ``` Adds userland package based onbeed9aee2c* fix: container builds for distro * chore: update yarn occurrences * fixup! chore: bump vsce@2.17.0 Uses the closest version to `main` branch that does not included3cc84cdecwhile still having the fix8b49e9dfdf* chore: sync npm dependencies * chore: sync npm dependencies * chore: sync npm dependencies * chore: throw error when yarn is used for installation * chore: add review feedback * chore: switch exec => run where needed * chore: npm sync dependencies * fix: markdown-language-features bundling ``` ✘ [ERROR] Could not resolve "punycode" extensions/markdown-language-features/node_modules/markdown-it/lib/index.js:14:27: 14 │ var punycode = require('punycode'); ╵ ~~~~~~~~~~ The package "punycode" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error. ``` Adds missing userland package based on markdown-it/markdown-it@beed9ae, can be removed once we update markdown-it >= 14.1.0 * ci: rename no-yarn-lock-changes.yml * chore: sync npm dependencies * ci: restore no-yarn-lock-changes.yml We can disable it in a separate PR to keep the required checks happy and also need workflow edit perms. * chore: sync npm dependencies * ci: rebuild cache * ci: fix no-package-lock-changes.yml * chore: bump distro * chore: rm yarn.lock files * chore: rm yarn.lock files without dependencies * chore: add vscode-selfhost-import-aid to postinstall dirs * chore: bump distro
316 lines
11 KiB
JavaScript
316 lines
11 KiB
JavaScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
'use strict';
|
|
|
|
const gulp = require('gulp');
|
|
const path = require('path');
|
|
const es = require('event-stream');
|
|
const util = require('./lib/util');
|
|
const { getVersion } = require('./lib/getVersion');
|
|
const task = require('./lib/task');
|
|
const optimize = require('./lib/optimize');
|
|
const { readISODate } = require('./lib/date');
|
|
const product = require('../product.json');
|
|
const rename = require('gulp-rename');
|
|
const filter = require('gulp-filter');
|
|
const { getProductionDependencies } = require('./lib/dependencies');
|
|
const vfs = require('vinyl-fs');
|
|
const packageJson = require('../package.json');
|
|
const { compileBuildTask } = require('./gulpfile.compile');
|
|
const extensions = require('./lib/extensions');
|
|
const { isAMD } = require('./lib/amd');
|
|
const VinylFile = require('vinyl');
|
|
|
|
const REPO_ROOT = path.dirname(__dirname);
|
|
const BUILD_ROOT = path.dirname(REPO_ROOT);
|
|
const WEB_FOLDER = path.join(REPO_ROOT, 'remote', 'web');
|
|
|
|
const commit = getVersion(REPO_ROOT);
|
|
const quality = product.quality;
|
|
const version = (quality && quality !== 'stable') ? `${packageJson.version}-${quality}` : packageJson.version;
|
|
|
|
const vscodeWebResourceIncludes = !isAMD() ? [
|
|
|
|
// NLS
|
|
'out-build/nls.messages.js',
|
|
|
|
// Accessibility Signals
|
|
'out-build/vs/platform/accessibilitySignal/browser/media/*.mp3',
|
|
|
|
// Welcome
|
|
'out-build/vs/workbench/contrib/welcomeGettingStarted/common/media/**/*.{svg,png}',
|
|
|
|
// Extensions
|
|
'out-build/vs/workbench/contrib/extensions/browser/media/{theme-icon.png,language-icon.svg}',
|
|
'out-build/vs/workbench/services/extensionManagement/common/media/*.{svg,png}',
|
|
|
|
// Webview
|
|
'out-build/vs/workbench/contrib/webview/browser/pre/*.{js,html}',
|
|
|
|
// Tree Sitter highlights
|
|
'out-build/vs/editor/common/languages/highlights/*.scm',
|
|
|
|
// Extension Host Worker
|
|
'out-build/vs/workbench/services/extensions/worker/webWorkerExtensionHostIframe.esm.html',
|
|
] : [
|
|
|
|
// Workbench
|
|
'out-build/vs/{base,platform,editor,workbench}/**/*.{svg,png,jpg,mp3}',
|
|
'out-build/vs/code/browser/workbench/*.html',
|
|
'out-build/vs/base/browser/ui/codicons/codicon/**/*.ttf',
|
|
'out-build/vs/**/markdown.css',
|
|
|
|
// NLS
|
|
'out-build/nls.messages.js',
|
|
|
|
// Webview
|
|
'out-build/vs/workbench/contrib/webview/browser/pre/*.js',
|
|
'out-build/vs/workbench/contrib/webview/browser/pre/*.html',
|
|
|
|
// Extension Worker
|
|
'out-build/vs/workbench/services/extensions/worker/webWorkerExtensionHostIframe.html',
|
|
|
|
// Tree Sitter highlights
|
|
'out-build/vs/editor/common/languages/highlights/*.scm',
|
|
|
|
// Web node paths (needed for integration tests)
|
|
'out-build/vs/webPackagePaths.js',
|
|
];
|
|
exports.vscodeWebResourceIncludes = vscodeWebResourceIncludes;
|
|
|
|
const vscodeWebResources = [
|
|
|
|
// Includes
|
|
...vscodeWebResourceIncludes,
|
|
|
|
// Excludes
|
|
'!out-build/vs/**/{node,electron-sandbox,electron-main,electron-utility}/**',
|
|
'!out-build/vs/editor/standalone/**',
|
|
'!out-build/vs/workbench/**/*-tb.png',
|
|
'!out-build/vs/code/**/*-dev.html',
|
|
'!out-build/vs/code/**/*-dev.esm.html',
|
|
'!**/test/**'
|
|
];
|
|
|
|
const buildfile = require('./buildfile');
|
|
|
|
const vscodeWebEntryPoints = !isAMD() ? [
|
|
buildfile.base,
|
|
buildfile.workerExtensionHost,
|
|
buildfile.workerNotebook,
|
|
buildfile.workerLanguageDetection,
|
|
buildfile.workerLocalFileSearch,
|
|
buildfile.workerOutputLinks,
|
|
buildfile.workerBackgroundTokenization,
|
|
buildfile.keyboardMaps,
|
|
buildfile.workbenchWeb(),
|
|
buildfile.entrypoint('vs/workbench/workbench.web.main.internal') // TODO@esm remove line when we stop supporting web-amd-esm-bridge
|
|
].flat() : [
|
|
buildfile.entrypoint('vs/workbench/workbench.web.main.internal'),
|
|
buildfile.base,
|
|
buildfile.workerExtensionHost,
|
|
buildfile.workerNotebook,
|
|
buildfile.workerLanguageDetection,
|
|
buildfile.workerLocalFileSearch,
|
|
buildfile.keyboardMaps,
|
|
buildfile.workbenchWeb()
|
|
].flat();
|
|
|
|
/**
|
|
* @param {object} product The parsed product.json file contents
|
|
*/
|
|
const createVSCodeWebProductConfigurationPatcher = (product) => {
|
|
/**
|
|
* @param content {string} The contents of the file
|
|
* @param path {string} The absolute file path, always using `/`, even on Windows
|
|
*/
|
|
const result = (content, path) => {
|
|
// (1) Patch product configuration
|
|
if (path.endsWith('vs/platform/product/common/product.js')) {
|
|
const productConfiguration = JSON.stringify({
|
|
...product,
|
|
version,
|
|
commit,
|
|
date: readISODate('out-build')
|
|
});
|
|
return content.replace('/*BUILD->INSERT_PRODUCT_CONFIGURATION*/', () => productConfiguration.substr(1, productConfiguration.length - 2) /* without { and }*/);
|
|
}
|
|
|
|
return content;
|
|
};
|
|
return result;
|
|
};
|
|
|
|
/**
|
|
* @param extensionsRoot {string} The location where extension will be read from
|
|
*/
|
|
const createVSCodeWebBuiltinExtensionsPatcher = (extensionsRoot) => {
|
|
/**
|
|
* @param content {string} The contents of the file
|
|
* @param path {string} The absolute file path, always using `/`, even on Windows
|
|
*/
|
|
const result = (content, path) => {
|
|
// (2) Patch builtin extensions
|
|
if (path.endsWith('vs/workbench/services/extensionManagement/browser/builtinExtensionsScannerService.js')) {
|
|
const builtinExtensions = JSON.stringify(extensions.scanBuiltinExtensions(extensionsRoot));
|
|
return content.replace('/*BUILD->INSERT_BUILTIN_EXTENSIONS*/', () => builtinExtensions.substr(1, builtinExtensions.length - 2) /* without [ and ]*/);
|
|
}
|
|
|
|
return content;
|
|
};
|
|
return result;
|
|
};
|
|
|
|
/**
|
|
* @param patchers {((content:string, path: string)=>string)[]}
|
|
*/
|
|
const combineContentPatchers = (...patchers) => {
|
|
/**
|
|
* @param content {string} The contents of the file
|
|
* @param path {string} The absolute file path, always using `/`, even on Windows
|
|
*/
|
|
const result = (content, path) => {
|
|
for (const patcher of patchers) {
|
|
content = patcher(content, path);
|
|
}
|
|
return content;
|
|
};
|
|
return result;
|
|
};
|
|
|
|
/**
|
|
* @param extensionsRoot {string} The location where extension will be read from
|
|
* @param {object} product The parsed product.json file contents
|
|
*/
|
|
const createVSCodeWebFileContentMapper = (extensionsRoot, product) => {
|
|
return combineContentPatchers(
|
|
createVSCodeWebProductConfigurationPatcher(product),
|
|
createVSCodeWebBuiltinExtensionsPatcher(extensionsRoot)
|
|
);
|
|
};
|
|
exports.createVSCodeWebFileContentMapper = createVSCodeWebFileContentMapper;
|
|
|
|
const optimizeVSCodeWebTask = task.define('optimize-vscode-web', task.series(
|
|
util.rimraf('out-vscode-web'),
|
|
optimize.optimizeTask(
|
|
{
|
|
out: 'out-vscode-web',
|
|
amd: {
|
|
src: 'out-build',
|
|
entryPoints: vscodeWebEntryPoints.flat(),
|
|
otherSources: [],
|
|
resources: vscodeWebResources,
|
|
loaderConfig: optimize.loaderConfig(),
|
|
externalLoaderInfo: util.createExternalLoaderConfig(product.webEndpointUrl, commit, quality),
|
|
inlineAmdImages: true,
|
|
bundleInfo: undefined,
|
|
fileContentMapper: createVSCodeWebFileContentMapper('.build/web/extensions', product)
|
|
}
|
|
}
|
|
)
|
|
));
|
|
|
|
const minifyVSCodeWebTask = task.define('minify-vscode-web', task.series(
|
|
optimizeVSCodeWebTask,
|
|
util.rimraf('out-vscode-web-min'),
|
|
optimize.minifyTask('out-vscode-web', `https://main.vscode-cdn.net/sourcemaps/${commit}/core`)
|
|
));
|
|
gulp.task(minifyVSCodeWebTask);
|
|
|
|
function packageTask(sourceFolderName, destinationFolderName) {
|
|
const destination = path.join(BUILD_ROOT, destinationFolderName);
|
|
|
|
return () => {
|
|
const json = require('gulp-json-editor');
|
|
|
|
const src = gulp.src(sourceFolderName + '/**', { base: '.' })
|
|
.pipe(rename(function (path) { path.dirname = path.dirname.replace(new RegExp('^' + sourceFolderName), 'out'); }));
|
|
|
|
const extensions = gulp.src('.build/web/extensions/**', { base: '.build/web', dot: true });
|
|
|
|
const loader = gulp.src('build/loader.min', { base: 'build', dot: true }).pipe(rename('out/vs/loader.js')); // TODO@esm remove line when we stop supporting web-amd-esm-bridge
|
|
|
|
const sources = es.merge(...(!isAMD() ? [src, extensions, loader] : [src, extensions]))
|
|
.pipe(filter(['**', '!**/*.js.map'], { dot: true }))
|
|
// TODO@esm remove me once we stop supporting our web-esm-bridge
|
|
.pipe(es.through(function (file) {
|
|
if (file.relative === 'out/vs/workbench/workbench.web.main.internal.css') {
|
|
this.emit('data', new VinylFile({
|
|
contents: file.contents,
|
|
path: file.path.replace('workbench.web.main.internal.css', 'workbench.web.main.css'),
|
|
base: file.base
|
|
}));
|
|
}
|
|
this.emit('data', file);
|
|
}));
|
|
|
|
const name = product.nameShort;
|
|
const packageJsonStream = gulp.src(['remote/web/package.json'], { base: 'remote/web' })
|
|
.pipe(json({ name, version }));
|
|
|
|
const license = gulp.src(['remote/LICENSE'], { base: 'remote', allowEmpty: true });
|
|
|
|
const productionDependencies = getProductionDependencies(WEB_FOLDER);
|
|
const dependenciesSrc = productionDependencies.map(d => path.relative(REPO_ROOT, d)).map(d => [`${d}/**`, `!${d}/**/{test,tests}/**`, `!${d}/.bin/**`]).flat();
|
|
|
|
const deps = gulp.src(dependenciesSrc, { base: 'remote/web', dot: true })
|
|
.pipe(filter(['**', '!**/package-lock.json']))
|
|
.pipe(util.cleanNodeModules(path.join(__dirname, '.webignore')));
|
|
|
|
const favicon = gulp.src('resources/server/favicon.ico', { base: 'resources/server' });
|
|
const manifest = gulp.src('resources/server/manifest.json', { base: 'resources/server' });
|
|
const pwaicons = es.merge(
|
|
gulp.src('resources/server/code-192.png', { base: 'resources/server' }),
|
|
gulp.src('resources/server/code-512.png', { base: 'resources/server' })
|
|
);
|
|
|
|
const all = es.merge(
|
|
packageJsonStream,
|
|
license,
|
|
sources,
|
|
deps,
|
|
favicon,
|
|
manifest,
|
|
pwaicons
|
|
);
|
|
|
|
const result = all
|
|
.pipe(util.skipDirectories())
|
|
.pipe(util.fixWin32DirectoryPermissions());
|
|
|
|
return result.pipe(vfs.dest(destination));
|
|
};
|
|
}
|
|
|
|
const compileWebExtensionsBuildTask = task.define('compile-web-extensions-build', task.series(
|
|
task.define('clean-web-extensions-build', util.rimraf('.build/web/extensions')),
|
|
task.define('bundle-web-extensions-build', () => extensions.packageLocalExtensionsStream(true, false).pipe(gulp.dest('.build/web'))),
|
|
task.define('bundle-marketplace-web-extensions-build', () => extensions.packageMarketplaceExtensionsStream(true).pipe(gulp.dest('.build/web'))),
|
|
task.define('bundle-web-extension-media-build', () => extensions.buildExtensionMedia(false, '.build/web/extensions')),
|
|
));
|
|
gulp.task(compileWebExtensionsBuildTask);
|
|
|
|
const dashed = (/** @type {string} */ str) => (str ? `-${str}` : ``);
|
|
|
|
['', 'min'].forEach(minified => {
|
|
const sourceFolderName = `out-vscode-web${dashed(minified)}`;
|
|
const destinationFolderName = `vscode-web`;
|
|
|
|
const vscodeWebTaskCI = task.define(`vscode-web${dashed(minified)}-ci`, task.series(
|
|
compileWebExtensionsBuildTask,
|
|
minified ? minifyVSCodeWebTask : optimizeVSCodeWebTask,
|
|
util.rimraf(path.join(BUILD_ROOT, destinationFolderName)),
|
|
packageTask(sourceFolderName, destinationFolderName)
|
|
));
|
|
gulp.task(vscodeWebTaskCI);
|
|
|
|
const vscodeWebTask = task.define(`vscode-web${dashed(minified)}`, task.series(
|
|
compileBuildTask,
|
|
vscodeWebTaskCI
|
|
));
|
|
gulp.task(vscodeWebTask);
|
|
});
|