Skip to content

Commit

Permalink
fix: export does not transpile correctly #176
Browse files Browse the repository at this point in the history
merging - flow fails because of retryParams type definition in providers.
  • Loading branch information
odedhutzler authored Nov 19, 2018
1 parent 7a70147 commit c7532d4
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import '@playkit-js/playkit-js-kava';
import * as shaka from 'shaka-player';
// Import setup method
import {setup} from './setup';
export {getPlayers, getPlayer} from './proxy';
import {getPlayers, getPlayer} from './proxy';
// Import cast framework
import {cast} from './common/cast';
// Import playlist
Expand All @@ -37,4 +37,17 @@ setLogLevel(currentLogLevel);

PolyfillManager.installAll();

export {core, ui, providers, setup, shaka, cast, playlist, __PLAYER_TYPE__ as PLAYER_TYPE, __VERSION__ as VERSION, __NAME__ as PLAYER_NAME};
export {
getPlayers,
getPlayer,
core,
ui,
providers,
setup,
shaka,
cast,
playlist,
__PLAYER_TYPE__ as PLAYER_TYPE,
__VERSION__ as VERSION,
__NAME__ as PLAYER_NAME
};

0 comments on commit c7532d4

Please sign in to comment.