Change joinRoom to joinSession

pull/1/head
Micael Gallego 2016-10-17 17:17:13 +02:00
parent 11378cc420
commit ec5a3e6843
4 changed files with 14 additions and 5 deletions

View File

@ -1,2 +1,4 @@
/node_modules/
/yarn.lock
/npm-debug.log
/lib/

View File

@ -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",

View File

@ -0,0 +1,4 @@
export * from './OpenVidu';
export * from './Participant';
export * from './Stream';
export * from './Session';

View File

@ -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