Code coverage report for lib/constants.js

Statements: 100% (24 / 24)      Branches: 100% (0 / 0)      Functions: 50% (1 / 2)      Lines: 100% (24 / 24)      Ignored: none     

All files » lib/ » constants.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29    1 1 1 1 1 1 1 1 1 1 1 1 1 1 1   1 1 1 1 1 1 1 1   1  
///<reference path=".d.ts"/>
"use strict";
exports.APP_FOLDER_NAME = "app";
exports.APP_RESOURCES_FOLDER_NAME = "App_Resources";
exports.PROJECT_FRAMEWORK_FOLDER_NAME = "framework";
exports.NATIVESCRIPT_KEY_NAME = "nativescript";
exports.NODE_MODULES_FOLDER_NAME = "node_modules";
exports.TNS_MODULES_FOLDER_NAME = "tns_modules";
exports.TNS_CORE_MODULES_NAME = "tns-core-modules";
exports.PACKAGE_JSON_FILE_NAME = "package.json";
exports.NODE_MODULE_CACHE_PATH_KEY_NAME = "node-modules-cache-path";
exports.DEFAULT_APP_IDENTIFIER_PREFIX = "org.nativescript";
exports.LIVESYNC_EXCLUDED_DIRECTORIES = ["app_resources"];
exports.TESTING_FRAMEWORKS = ['jasmine', 'mocha', 'qunit'];
exports.TEST_RUNNER_NAME = "nativescript-unit-test-runner";
var ReleaseType = (function () {
    function ReleaseType() {
    }
    ReleaseType.MAJOR = "major";
    ReleaseType.PREMAJOR = "premajor";
    ReleaseType.MINOR = "minor";
    ReleaseType.PREMINOR = "preminor";
    ReleaseType.PATCH = "patch";
    ReleaseType.PREPATCH = "prepatch";
    ReleaseType.PRERELEASE = "prerelease";
    return ReleaseType;
})();
exports.ReleaseType = ReleaseType;