@dicdikshaorg/epub-player-v9
Version:
Contains Epub player library components powered by angular. These components are designed to be used in sunbird consumption platforms *(mobile app, web portal, offline desktop app)* to drive reusability, maintainability hence reducing the redundant develo
16 lines • 623 B
JavaScript
;
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