Skip to content

Commit

Permalink
update build for latest browserify version, rebuild, bump package ver…
Browse files Browse the repository at this point in the history
…sion, remove unused variables from rtcpeerconnection
  • Loading branch information
Xander Dumaine committed Jul 15, 2015
1 parent 13f41b5 commit f7b0dde
Show file tree
Hide file tree
Showing 4 changed files with 399 additions and 525 deletions.
4 changes: 2 additions & 2 deletions build.js
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'));
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rtcpeerconnection",
"version": "3.1.2",
"version": "3.1.3",
"description": "A tiny browser module that normalizes and simplifies the API for WebRTC peer connections.",
"main": "rtcpeerconnection.js",
"repository": {
Expand Down
Loading

0 comments on commit f7b0dde

Please sign in to comment.