f214235e2d
It looks like they added a few more variables and cleaned this file up. I removed the yarn and yarnRc stuff. Hope that doesn't break anything.
18 lines
748 B
TypeScript
18 lines
748 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import * as path from 'path';
|
|
|
|
const root = path.dirname(path.dirname(__dirname));
|
|
const version = process.versions.node;
|
|
const platform = process.platform;
|
|
|
|
const arch = platform === 'darwin' ? 'x64' : process.arch;
|
|
|
|
const node = platform === 'win32' ? 'node.exe' : 'node';
|
|
const nodePath = path.join(root, '.build', 'node', `v${version}`, `${platform}-${arch}`, node);
|
|
|
|
console.log(nodePath);
|