mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 20:26:08 +00: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
121 lines
4.4 KiB
JavaScript
121 lines
4.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.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
const nodeVersion = /^(\d+)\.(\d+)\.(\d+)/.exec(process.versions.node);
|
|
const majorNodeVersion = parseInt(nodeVersion[1]);
|
|
const minorNodeVersion = parseInt(nodeVersion[2]);
|
|
const patchNodeVersion = parseInt(nodeVersion[3]);
|
|
|
|
if (!process.env['VSCODE_SKIP_NODE_VERSION_CHECK']) {
|
|
if (majorNodeVersion < 20) {
|
|
console.error('\x1b[1;31m*** Please use latest Node.js v20 LTS for development.\x1b[0;0m');
|
|
throw new Error();
|
|
}
|
|
}
|
|
|
|
if (process.env['npm_execpath'].includes('yarn')) {
|
|
console.error('\x1b[1;31m*** Seems like you are using `yarn` which is not supported in this repo any more, please use `npm i` instead. ***\x1b[0;0m');
|
|
throw new Error();
|
|
}
|
|
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
const cp = require('child_process');
|
|
|
|
if (process.platform === 'win32') {
|
|
if (!hasSupportedVisualStudioVersion()) {
|
|
console.error('\x1b[1;31m*** Invalid C/C++ Compiler Toolchain. Please check https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites.\x1b[0;0m');
|
|
throw new Error();
|
|
}
|
|
installHeaders();
|
|
}
|
|
|
|
function hasSupportedVisualStudioVersion() {
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
// Translated over from
|
|
// https://source.chromium.org/chromium/chromium/src/+/master:build/vs_toolchain.py;l=140-175
|
|
const supportedVersions = ['2022', '2019', '2017'];
|
|
|
|
const availableVersions = [];
|
|
for (const version of supportedVersions) {
|
|
let vsPath = process.env[`vs${version}_install`];
|
|
if (vsPath && fs.existsSync(vsPath)) {
|
|
availableVersions.push(version);
|
|
break;
|
|
}
|
|
const programFiles86Path = process.env['ProgramFiles(x86)'];
|
|
const programFiles64Path = process.env['ProgramFiles'];
|
|
|
|
const vsTypes = ['Enterprise', 'Professional', 'Community', 'Preview', 'BuildTools', 'IntPreview'];
|
|
if (programFiles64Path) {
|
|
vsPath = `${programFiles64Path}/Microsoft Visual Studio/${version}`;
|
|
if (vsTypes.some(vsType => fs.existsSync(path.join(vsPath, vsType)))) {
|
|
availableVersions.push(version);
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (programFiles86Path) {
|
|
vsPath = `${programFiles86Path}/Microsoft Visual Studio/${version}`;
|
|
if (vsTypes.some(vsType => fs.existsSync(path.join(vsPath, vsType)))) {
|
|
availableVersions.push(version);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return availableVersions.length;
|
|
}
|
|
|
|
function installHeaders() {
|
|
cp.execSync(`npm.cmd ${process.env['npm_command'] || 'ci'}`, {
|
|
env: process.env,
|
|
cwd: path.join(__dirname, 'gyp'),
|
|
stdio: 'inherit'
|
|
});
|
|
|
|
// The node gyp package got installed using the above npm command using the gyp/package.json
|
|
// file checked into our repository. So from that point it is save to construct the path
|
|
// to that executable
|
|
const node_gyp = path.join(__dirname, 'gyp', 'node_modules', '.bin', 'node-gyp.cmd');
|
|
const result = cp.execFileSync(node_gyp, ['list'], { encoding: 'utf8', shell: true });
|
|
const versions = new Set(result.split(/\n/g).filter(line => !line.startsWith('gyp info')).map(value => value));
|
|
|
|
const local = getHeaderInfo(path.join(__dirname, '..', '..', '.npmrc'));
|
|
const remote = getHeaderInfo(path.join(__dirname, '..', '..', 'remote', '.npmrc'));
|
|
|
|
if (local !== undefined && !versions.has(local.target)) {
|
|
// Both disturl and target come from a file checked into our repository
|
|
cp.execFileSync(node_gyp, ['install', '--dist-url', local.disturl, local.target], { shell: true });
|
|
}
|
|
|
|
if (remote !== undefined && !versions.has(remote.target)) {
|
|
// Both disturl and target come from a file checked into our repository
|
|
cp.execFileSync(node_gyp, ['install', '--dist-url', remote.disturl, remote.target], { shell: true });
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {string} rcFile
|
|
* @returns {{ disturl: string; target: string } | undefined}
|
|
*/
|
|
function getHeaderInfo(rcFile) {
|
|
const lines = fs.readFileSync(rcFile, 'utf8').split(/\r\n?/g);
|
|
let disturl, target;
|
|
for (const line of lines) {
|
|
let match = line.match(/\s*disturl=*\"(.*)\"\s*$/);
|
|
if (match !== null && match.length >= 1) {
|
|
disturl = match[1];
|
|
}
|
|
match = line.match(/\s*target=*\"(.*)\"\s*$/);
|
|
if (match !== null && match.length >= 1) {
|
|
target = match[1];
|
|
}
|
|
}
|
|
return disturl !== undefined && target !== undefined
|
|
? { disturl, target }
|
|
: undefined;
|
|
}
|