mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 12:19:20 +00:00
42 lines
1.0 KiB
JavaScript
42 lines
1.0 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 cp = require('child_process');
|
|
const npm = process.platform === 'win32' ? 'npm.cmd' : 'npm';
|
|
|
|
function npmInstall(location) {
|
|
const result = cp.spawnSync(npm, ['install'], {
|
|
cwd: location ,
|
|
stdio: 'inherit'
|
|
});
|
|
|
|
if (result.error || result.status !== 0) {
|
|
process.exit(1);
|
|
}
|
|
}
|
|
|
|
npmInstall('extensions'); // node modules shared by all extensions
|
|
|
|
const extensions = [
|
|
'vscode-api-tests',
|
|
'vscode-colorize-tests',
|
|
'json',
|
|
'configuration-editing',
|
|
'extension-editing',
|
|
'markdown',
|
|
'typescript',
|
|
'php',
|
|
'javascript',
|
|
'css',
|
|
'html',
|
|
'git',
|
|
'gulp',
|
|
'grunt',
|
|
'jake'
|
|
];
|
|
|
|
extensions.forEach(extension => npmInstall(`extensions/${extension}`));
|
|
|
|
npmInstall(`build`); // node modules required for build
|