-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved all NPM "dependencies" to "devDependencies"
It helps us deliver a clean standalone RTCMultiConnection package on NPM store. When you install "npm install RTCMultiConnection" it will merely download RTCMultiConnection.js scripts. A clean and tinny package. If you need RTCMultiConnection-Server or if you want to test demos then please try "npm install". It will install all required packages. i.e. npm install RTCMultiConnection cd node_modules/rtcmulticonnection npm install node server --port=9001
- Loading branch information
Showing
11 changed files
with
53 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,10 @@ | |
> | ||
> So you do not need to build a cordova or ionic application. | ||
Here is list of all cordova/iosnic demos: | ||
|
||
* https://github.com/muaz-khan/cordova-mobile-apps | ||
|
||
Please check these docs as well: | ||
|
||
* [Write iOS apps using RTCMultiConnection](http://www.rtcmulticonnection.org/docs/Write-iOS-Apps/) | ||
|
@@ -101,8 +105,8 @@ cordova platform remove ios | |
cordova platform remove android | ||
|
||
# add latest platform versions | ||
cordova platform add ios | ||
cordova platform add android | ||
cordova platform add [email protected] | ||
cordova platform add [email protected] | ||
``` | ||
|
||
# Build your Apps | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "rtcmulticonnection", | ||
"preferGlobal": false, | ||
"version": "3.5.9", | ||
"version": "3.6.1", | ||
"author": { | ||
"name": "Muaz Khan", | ||
"email": "[email protected]", | ||
|
@@ -13,7 +13,9 @@ | |
"url": "https://github.com/muaz-khan/RTCMultiConnection.git" | ||
}, | ||
"scripts": { | ||
"start": "node server.js" | ||
"start": "node server.js", | ||
"heroku-prebuild": "export NPM_CONFIG_PRODUCTION=false; export NODE_ENV=; NPM_CONFIG_PRODUCTION=false NODE_ENV=development npm install --only=dev --dev", | ||
"heroku-postbuild": "export NPM_CONFIG_PRODUCTION=true; export NODE_ENV=production;" | ||
}, | ||
"engines": { | ||
"node": "latest" | ||
|
@@ -42,18 +44,7 @@ | |
"muaz", | ||
"muaz-khan" | ||
], | ||
"dependencies": { | ||
"rtcmulticonnection-server": "latest", | ||
"detectrtc": "latest", | ||
"recordrtc": "latest", | ||
"getstats": "latest", | ||
"fbr": "latest", | ||
"webrtc-screen-capturing": "latest", | ||
"socket.io": "latest", | ||
"webrtc-adapter": "latest", | ||
"canvas-designer": "latest", | ||
"multistreamsmixer": "latest" | ||
}, | ||
"dependencies": {}, | ||
"analyze": false, | ||
"license": "MIT", | ||
"readmeFilename": "README.md", | ||
|
@@ -65,6 +56,16 @@ | |
"tonicExampleFilename": "npm-test.js", | ||
"_from": "rtcmulticonnection@", | ||
"devDependencies": { | ||
"rtcmulticonnection-server": "latest", | ||
"detectrtc": "latest", | ||
"recordrtc": "latest", | ||
"getstats": "latest", | ||
"fbr": "latest", | ||
"webrtc-screen-capturing": "latest", | ||
"socket.io": "latest", | ||
"webrtc-adapter": "latest", | ||
"canvas-designer": "latest", | ||
"multistreamsmixer": "latest", | ||
"grunt": "0.4.5", | ||
"grunt-bump": "0.7.0", | ||
"grunt-cli": "0.1.13", | ||
|