-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Dan Ziv
authored
Jul 26, 2020
1 parent
299f5e3
commit 45c4038
Showing
36 changed files
with
5,976 additions
and
3,534 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
{ | ||
"presets": [ | ||
"es2015" | ||
], | ||
"plugins": [ | ||
"transform-flow-strip-types", | ||
"transform-class-properties" | ||
], | ||
"env": { | ||
"test": { | ||
"plugins": [ | ||
"istanbul" | ||
] | ||
"plugins": ["istanbul"] | ||
} | ||
} | ||
}, | ||
"ignore": ["node_modules/**/*"], | ||
"plugins": [ | ||
"@babel/plugin-syntax-dynamic-import", | ||
"@babel/plugin-transform-flow-strip-types", | ||
"@babel/plugin-transform-property-mutators", | ||
"@babel/plugin-proposal-object-rest-spread", | ||
"@babel/plugin-proposal-class-properties", | ||
"@babel/plugin-transform-classes" | ||
], | ||
"presets": ["@babel/preset-env", "@babel/preset-flow"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
/flow-typed/**/*.js | ||
/coverage | ||
/dist | ||
karma.conf.js | ||
webpack.config.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
[ignore] | ||
.*/node_modules | ||
.*/node_modules/.* | ||
[include] | ||
[options] | ||
unsafe.enable_getters_and_setters=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,28 @@ | ||
<!-- If you are raising a bug playing a stream, you must fill out the following or your issue may not be responded to. For features or improvements, you may delete this. --> | ||
|
||
##### Prerequisites | ||
- [ ] Have you checked for duplicate [issues](https://github.com/kaltura/playkit-js-providers/issues): ______ | ||
- [ ] Which Plugin [version](https://github.com/kaltura/playkit-js-providers/releases) are you using: ______ | ||
- [ ] Can you reproduce the issue with our latest release version: ______ | ||
- [ ] Can you reproduce the issue with the latest code from master: ______ | ||
- [ ] What browser and OS names and versions are you using: ______ | ||
- [ ] If applicable, add test code or test page to reproduce: | ||
|
||
- [ ] Have you checked for duplicate [issues](https://github.com/kaltura/playkit-js-providers/issues): **\_\_** | ||
- [ ] Which Plugin [version](https://github.com/kaltura/playkit-js-providers/releases) are you using: **\_\_** | ||
- [ ] Can you reproduce the issue with our latest release version: **\_\_** | ||
- [ ] Can you reproduce the issue with the latest code from master: **\_\_** | ||
- [ ] What browser and OS names and versions are you using: **\_\_** | ||
- [ ] If applicable, add test code or test page to reproduce: | ||
|
||
``` | ||
Paste test code here | ||
``` | ||
|
||
##### Expected behavior | ||
|
||
What you expected to happen | ||
|
||
##### Actual behavior | ||
|
||
What actually happened | ||
|
||
##### Console output | ||
|
||
``` | ||
Paste the contents of the browser console here. | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ CHANGELOG.md | |
yarn.lock | ||
yarn-error.log | ||
LICENSE | ||
coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
// @flow | ||
declare type CaptionType = { [type: string]: string }; | ||
declare type CaptionType = {[type: string]: string}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// @flow | ||
declare type ProviderFilterOptionsObject = { | ||
redirectFromEntryId?: boolean; | ||
redirectFromEntryId?: boolean | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.