-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update build for latest browserify version, rebuild, bump package ver…
…sion, remove unused variables from rtcpeerconnection
- Loading branch information
Xander Dumaine
committed
Jul 15, 2015
1 parent
13f41b5
commit f7b0dde
Showing
4 changed files
with
399 additions
and
525 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
var bundle = require('browserify')(), | ||
var bundle = require('browserify')({standalone: 'PeerConnection'}), | ||
fs = require('fs'); | ||
|
||
|
||
bundle.add('./rtcpeerconnection'); | ||
bundle.bundle({standalone: 'PeerConnection'}).pipe(fs.createWriteStream('rtcpeerconnection.bundle.js')); | ||
bundle.bundle().pipe(fs.createWriteStream('rtcpeerconnection.bundle.js')); |
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
Oops, something went wrong.