@project-sunbird/sunbird-epub-player-v9
Version:
The Epub player library is 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 development
17 lines • 711 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const schematics_1 = require("@angular-devkit/schematics");
const add_player_module_1 = require("./steps/add-player-module");
const add_player_style_1 = require("./steps/add-player-style");
/**
* Sets up a project with all required to run sunbird pdf player.
* This is run after 'package.json' was patched and all dependencies installed
*/
function ngAddSetupProject(options) {
return (0, schematics_1.chain)([
(0, add_player_module_1.addPlayerModuleToAppModule)(options),
(0, add_player_style_1.addPlayerStyles)(options),
]);
}
exports.default = ngAddSetupProject;
//# sourceMappingURL=setup-project.js.map