mirror of
https://github.com/microsoft/vscode.git
synced 2026-06-04 22:54:33 +01:00
333d9a4053
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
16 lines
528 B
TypeScript
16 lines
528 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 { execSync } from 'child_process';
|
|
|
|
function prepareHusky() {
|
|
execSync('npm run husky:install', { stdio: 'inherit' });
|
|
}
|
|
|
|
function main() {
|
|
prepareHusky();
|
|
}
|
|
|
|
main();
|