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

19 lines 869 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const schematics_1 = require("@angular-devkit/schematics"); const add_library_module_1 = require("./steps/add-library-module"); // spp --> sunbird VIDEO player const add_library_styles_1 = require("./steps/add-library-styles"); const create_service_1 = require("./steps/create-service"); /** * Sets up a project with all required to run sunbird video player. * This is run after 'package.json' was patched and all dependencies installed */ function ngAddSetupProject(options) { return (0, schematics_1.chain)([ (0, add_library_module_1.addLibraryModuleToAppModule)(options), (0, add_library_styles_1.addLibraryStyles)(options), (0, create_service_1.createService)(options) ]); } exports.default = ngAddSetupProject; //# sourceMappingURL=setup-project.js.map