UNPKG

@tekdi/sunbird-quml-player

Version:

The QuML player library components are powered by Angular. This player is primarily designed to be used on Sunbird consumption platforms (mobile app, web portal, offline desktop app) to drive reusability and maintainability, hence reducing the redundant d

16 lines 608 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.noModuleFile = exports.noMainFile = exports.noProject = void 0; function noProject(project) { return `Unable to find project '${project}' in the workspace`; } exports.noProject = noProject; function noMainFile(projectName) { return `Unable to find 'build.options.main' file path for project "${projectName}"`; } exports.noMainFile = noMainFile; function noModuleFile(moduleFilePath) { return `File '${moduleFilePath}' does not exist.`; } exports.noModuleFile = noModuleFile; //# sourceMappingURL=messages.js.map