microsoft/vscode-react-native

Public

mirrored from https://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
1.9.2

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/extension/services/validationService/checks/expoCli.ts

42lines · 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
4import * as nls from "vscode-nls";
5import { basicCheck, createNotFoundMessage } from "../util";
6import { ValidationCategoryE, IValidation, ValidationResultT } from "./types";
7
8nls.config({
9 messageFormat: nls.MessageFormat.bundle,
10 bundleFormat: nls.BundleFormat.standalone,
11})();
12
13const toLocale = nls.loadMessageBundle();
14
15const label = "Expo CLI";
16
17async function test(): Promise<ValidationResultT> {
18 const result = await basicCheck({
19 command: "expo-cli",
20 });
21
22 if (!result.exists) {
23 return {
24 status: "failure",
25 comment: createNotFoundMessage(label),
26 };
27 }
28
29 return { status: "success" };
30}
31
32const main: IValidation = {
33 label,
34 description: toLocale(
35 "ExpoCliTestDescription",
36 "Required for installing and managing Expo applications",
37 ),
38 category: ValidationCategoryE.Expo,
39 exec: test,
40};
41
42export default main;
43