mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
* Merge from vscode a5cf1da01d5db3d2557132be8d30f89c38019f6c * remove files we don't want * fix hygiene * update distro * update distro * fix hygiene * fix strict nulls * distro * distro * fix tests * fix tests * add another edit * fix viewlet icon * fix azure dialog * fix some padding * fix more padding issues
35 lines
1.2 KiB
JavaScript
35 lines
1.2 KiB
JavaScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
let err = false;
|
|
|
|
const majorNodeVersion = parseInt(/^(\d+)\./.exec(process.versions.node)[1]);
|
|
|
|
if (majorNodeVersion < 10 || majorNodeVersion >= 13) {
|
|
console.error('\033[1;31m*** Please use node >=10 and <=12.\033[0;0m');
|
|
err = true;
|
|
}
|
|
|
|
const cp = require('child_process');
|
|
const yarnVersion = cp.execSync('yarn -v', { encoding: 'utf8' }).trim();
|
|
const parsedYarnVersion = /^(\d+)\.(\d+)\./.exec(yarnVersion);
|
|
const majorYarnVersion = parseInt(parsedYarnVersion[1]);
|
|
const minorYarnVersion = parseInt(parsedYarnVersion[2]);
|
|
|
|
if (majorYarnVersion < 1 || minorYarnVersion < 10) {
|
|
console.error('\033[1;31m*** Please use yarn >=1.10.1.\033[0;0m');
|
|
err = true;
|
|
}
|
|
|
|
if (!/yarn\.js$|yarnpkg$/.test(process.env['npm_execpath'])) {
|
|
console.error('\033[1;31m*** Please use yarn to install dependencies.\033[0;0m');
|
|
err = true;
|
|
}
|
|
|
|
if (err) {
|
|
console.error('');
|
|
process.exit(1);
|
|
}
|