microsoft/vscode-react-native
Publicmirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable
src/utils/reactNativeCommandHelper.ts
14lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. All rights reserved. |
| 2 | // Licensed under the MIT license. See LICENSE file in the project root for details. |
| 3 | |
| 4 | import * as child_process from 'child_process'; |
| 5 | import * as os from 'os'; |
| 6 | import {window} from 'vscode'; |
| 7 | |
| 8 | export class ReactNativeCommandHelper { |
| 9 | private static CORDOVA_CMD_NAME = "react-native"; |
| 10 | |
| 11 | public static executeReactNativeCommand(projectRoot: string, command: string) { |
| 12 | |
| 13 | } |
| 14 | } |
| 15 | |