mirror of https://github.com/OpenVidu/openvidu.git
Change joinRoom to joinSession
parent
11378cc420
commit
ec5a3e6843
|
@ -1,2 +1,4 @@
|
|||
/node_modules/
|
||||
/yarn.lock
|
||||
/npm-debug.log
|
||||
/lib/
|
||||
|
|
|
@ -1,11 +1,13 @@
|
|||
{
|
||||
"name": "openvidu",
|
||||
"version": "0.0.1",
|
||||
"name": "openvidu-browser",
|
||||
"version": "0.0.2",
|
||||
"description": "OpenVidu Browser",
|
||||
"main": "OpenVidu.js",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
"scripts": {
|
||||
"browserify": "cd ts && watchify Main.ts -p [ tsify ] --exclude kurento-browser-extensions --debug -o ../static/js/OpenVidu.js -v",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"prepublish": "cd ts && tsc"
|
||||
},
|
||||
"author": "",
|
||||
"license": "Apache-2.0",
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
export * from './OpenVidu';
|
||||
export * from './Participant';
|
||||
export * from './Stream';
|
||||
export * from './Session';
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"declaration": true,
|
||||
"target": "es5",
|
||||
"module": "commonjs",
|
||||
//"noImplicitAny": true,
|
||||
|
@ -17,7 +18,7 @@
|
|||
"forceConsistentCasingInFileNames": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"strictNullChecks": true,
|
||||
"outFile": "../ts_js/OpenVidu.js",
|
||||
"outDir": "../lib",
|
||||
"emitBOM": false,
|
||||
"preserveConstEnums": true,
|
||||
"sourceMap": true
|
||||
|
|
Loading…
Reference in New Issue