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

[Rewrite] General Improvements #20

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 4 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"presets": ["@babel/preset-env", "@babel/preset-react"],
"plugins": ["@babel/plugin-proposal-class-properties"]
}
29 changes: 29 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"env": {
"browser": true,
"node": true,
"shared-node-browser": true,
"commonjs": true
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"sourceType": "module",
"ecmaVersion": 12
},
"extends": [
"eslint:recommended",
"prettier",
"react-app",
"plugin:react/recommended"
],
"plugins": ["react", "only-warn", "prettier", "react-hooks"],
"reportUnusedDisableDirectives": true,
"rules": {
"prettier/prettier": "warn",
"react-hooks/rules-of-hooks": "warn",
"react-hooks/exhaustive-deps": "warn",
"react/prop-types": "warn"
}
}
18 changes: 12 additions & 6 deletions library/.gitignore → .gitignore
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
# See https://help.github.com/ignore-files/ for more about ignoring files.

# dependencies
/node_modules
node_modules/

# production
/dist
/src/lib/components
/src/lib/layout
/src/lib/models
# testing
coverage/

# production
build/
dist/
**.tgz

# misc
.DS_Store
npm-debug.log*

# IDE files
.idea/
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@
[![Documentation Status](https://readthedocs.org/projects/openviduio-docs/badge/?version=stable)](https://docs.openvidu.io/en/stable/?badge=stable)
[![Docker badge](https://img.shields.io/docker/pulls/fiware/orion.svg)](https://hub.docker.com/r/openvidu/classroom-demo/)
[![Support badge](https://img.shields.io/badge/support-sof-yellowgreen.svg)](https://openvidu.discourse.group/)
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)

[![][OpenViduLogo]](http://openvidu.io)
[![][openvidulogo]](http://openvidu.io)

# openvidu-call-react

openvidu-call-react
===
You can see the documentation [here](https://docs.openvidu.io/en/stable/demos/openvidu-call-react/)

See demo at [openvidu.io/demos](http://openvidu.io/demos#2)

[OpenViduLogo]: https://secure.gravatar.com/avatar/5daba1d43042f2e4e85849733c8e5702?s=120
[openvidulogo]: https://secure.gravatar.com/avatar/5daba1d43042f2e4e85849733c8e5702?s=120
9 changes: 0 additions & 9 deletions library/.babelrc

This file was deleted.

2,486 changes: 0 additions & 2,486 deletions library/README.md

This file was deleted.

Loading