microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
src/common/error/versionError.ts
10lines · modeblame
e3706a1cRedMickey6 years ago | 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 | export const RN_VERSION_ERRORS = { | |
| 5 | MISSING_PACKAGE_IN_NODE_MODULES: "errorMissingPackageInNodeModules", | |
| 6 | MISSING_DEPENDENCY_IN_PROJECT_PACKAGE_FILE: "errorMissingDependencyInProjectPackageFile", | |
34472878RedMickey5 years ago | 7 | MISSING_DEPENDENCIES_FIELDS_IN_PROJECT_PACKAGE_FILE: |
| 8 | "errorMissingDependenciesFieldsInProjectPackageFile", | |
e3706a1cRedMickey6 years ago | 9 | UNKNOWN_ERROR: "errorUnknown", |
| 10 | }; |