Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v4 #767

Merged
merged 28 commits into from
Apr 29, 2022
Merged

v4 #767

Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
a7d5172
feat: add usePlyr propposed method
realamirhe Jan 17, 2022
3f6d469
feat: Add example project
realamirhe Jan 17, 2022
ef73315
Create README.md
realamirhe Jan 21, 2022
955c0c2
4.0.0-alpha.1
chintan9 Jan 25, 2022
2500737
docs: Add pre-release version
realamirhe Feb 12, 2022
3b11382
Format code with prettier
deepsource-autofix[bot] Mar 22, 2022
0e526ca
docs: Fix typos
realamirhe Mar 22, 2022
5873044
chor: extract the babel configs
realamirhe Mar 23, 2022
a66d32b
fix: Update the enzyme adaptor for react 17
realamirhe Mar 23, 2022
a41dd95
feat: Add custom hls hook
realamirhe Mar 23, 2022
6f0edd8
refactor: Update typings and reduce code size
realamirhe Mar 23, 2022
8383ef1
bump: all core packges
realamirhe Mar 23, 2022
9f220db
Merge branch 'dev' of https://github.com/chintan9/plyr-react into dev
realamirhe Mar 23, 2022
20a530d
fix: Build warning issues
realamirhe Mar 24, 2022
d953c57
4.0.0-alpha.2
chintan9 Apr 6, 2022
76b7897
Update nodejs.yml
chintan9 Apr 6, 2022
a74fbf4
Merge pull request #756 from chintan9/node-upgrade-v16
chintan9 Apr 6, 2022
941ba40
4.0.0-alpha.3
chintan9 Apr 6, 2022
25a8113
Merge branch 'master' into dev
chintan9 Apr 15, 2022
b5afcad
fix vuln
chintan9 Apr 15, 2022
186051d
4.0.0-alpha.4
chintan9 Apr 15, 2022
68b1eb0
Update nodejs.yml
chintan9 Apr 15, 2022
adf8ee7
Update package.json
chintan9 Apr 26, 2022
bf3bf2c
update lock file
chintan9 Apr 26, 2022
d58f0fd
Merge branch 'master' into dev
chintan9 Apr 26, 2022
fd85cb8
add config
chintan9 Apr 26, 2022
6a62bf6
remove
chintan9 Apr 26, 2022
3c4911b
4.0.0-alpha.5
chintan9 Apr 26, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chor: extract the babel configs
realamirhe committed Mar 23, 2022
commit 58730441cddb62ff3ab47de37c1eae65bd7df1a0
15 changes: 15 additions & 0 deletions .babelrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"presets": [
"@babel/preset-env",
"@babel/preset-typescript",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-proposal-optional-chaining",
"@babel/plugin-proposal-nullish-coalescing-operator",
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-proposal-class-properties",
"transform-react-remove-prop-types"
]
}