microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
add-signproj-for-microbuild1

Branches

Tags

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

Clone

HTTPS

Download ZIP

src/common/error/versionError.ts

10lines · modeblame

e3706a1cRedMickey6 years ago1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the MIT license. See LICENSE file in the project root for details.
3
4export const RN_VERSION_ERRORS = {
5MISSING_PACKAGE_IN_NODE_MODULES: "errorMissingPackageInNodeModules",
6MISSING_DEPENDENCY_IN_PROJECT_PACKAGE_FILE: "errorMissingDependencyInProjectPackageFile",
34472878RedMickey5 years ago7MISSING_DEPENDENCIES_FIELDS_IN_PROJECT_PACKAGE_FILE:
8"errorMissingDependenciesFieldsInProjectPackageFile",
e3706a1cRedMickey6 years ago9UNKNOWN_ERROR: "errorUnknown",
10};