UNPKG

nativescript-doctor

Version:

Library that helps identifying if the environment can be used for development of {N} apps.

23 lines (22 loc) 1.04 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Constants { } exports.Constants = Constants; Constants.ANDROID_PLATFORM_NAME = "Android"; Constants.IOS_PLATFORM_NAME = "iOS"; Constants.SUPPORTED_PLATFORMS = [Constants.ANDROID_PLATFORM_NAME, Constants.IOS_PLATFORM_NAME]; Constants.SYSTEM_REQUIREMENTS_LINKS = { "win32": "http://docs.nativescript.org/setup/ns-cli-setup/ns-setup-win.html#system-requirements", "linux": "http://docs.nativescript.org/setup/ns-cli-setup/ns-setup-linux.html#system-requirements", "darwin": "http://docs.nativescript.org/setup/ns-cli-setup/ns-setup-os-x.html#system-requirements", }; Constants.INFO_TYPE_NAME = "info"; Constants.WARNING_TYPE_NAME = "warning"; Constants.PACKAGE_JSON = "package.json"; Constants.NATIVESCRIPT_KEY = "nativescript"; Constants.ANDROID_RUNTIME = "tns-android"; Constants.VERSION_PROPERTY_NAME = "version"; Constants.XCODE_MIN_REQUIRED_VERSION = 10; Constants.JAVAC_EXECUTABLE_NAME = "javac"; Constants.JAVA_EXECUTABLE_NAME = "java";