mirror of https://github.com/OpenVidu/openvidu.git
Change joinRoom to joinSession
parent
11378cc420
commit
ec5a3e6843
|
@ -1,2 +1,4 @@
|
||||||
/node_modules/
|
/node_modules/
|
||||||
/yarn.lock
|
/yarn.lock
|
||||||
|
/npm-debug.log
|
||||||
|
/lib/
|
||||||
|
|
|
@ -1,11 +1,13 @@
|
||||||
{
|
{
|
||||||
"name": "openvidu",
|
"name": "openvidu-browser",
|
||||||
"version": "0.0.1",
|
"version": "0.0.2",
|
||||||
"description": "OpenVidu Browser",
|
"description": "OpenVidu Browser",
|
||||||
"main": "OpenVidu.js",
|
"main": "lib/index.js",
|
||||||
|
"types": "lib/index.d.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"browserify": "cd ts && watchify Main.ts -p [ tsify ] --exclude kurento-browser-extensions --debug -o ../static/js/OpenVidu.js -v",
|
"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": "",
|
"author": "",
|
||||||
"license": "Apache-2.0",
|
"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": {
|
"compilerOptions": {
|
||||||
|
"declaration": true,
|
||||||
"target": "es5",
|
"target": "es5",
|
||||||
"module": "commonjs",
|
"module": "commonjs",
|
||||||
//"noImplicitAny": true,
|
//"noImplicitAny": true,
|
||||||
|
@ -17,7 +18,7 @@
|
||||||
"forceConsistentCasingInFileNames": true,
|
"forceConsistentCasingInFileNames": true,
|
||||||
"allowSyntheticDefaultImports": true,
|
"allowSyntheticDefaultImports": true,
|
||||||
"strictNullChecks": true,
|
"strictNullChecks": true,
|
||||||
"outFile": "../ts_js/OpenVidu.js",
|
"outDir": "../lib",
|
||||||
"emitBOM": false,
|
"emitBOM": false,
|
||||||
"preserveConstEnums": true,
|
"preserveConstEnums": true,
|
||||||
"sourceMap": true
|
"sourceMap": true
|
||||||
|
|
Loading…
Reference in New Issue