Skip to content

Commit

Permalink
change vendor.js to vendor-bundle.js
Browse files Browse the repository at this point in the history
  • Loading branch information
maraoz committed Mar 11, 2014
1 parent 069f67e commit 18b2d19
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Key.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ if (process.versions) {
module.exports = require('bindings')('KeyModule');
} else {
// pure js version
var ECKey = require('./browser/vendor.js').ECKey;
var ECKey = require('./browser/vendor-bundle.js').ECKey;
var buffertools = require('buffertools');

var bufferToArray = function(buffer) {
Expand Down
4 changes: 2 additions & 2 deletions browser/concat.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#! /bin/bash

cd vendor/
cat browser-adapter.js crypto.js ripemd160.js jsbn.js jsbn2.js prng4.js util.js rng.js ec.js sec.js ecdsa.js eckey.js > vendor.js
mv vendor.js ../
cat browser-adapter.js crypto.js ripemd160.js jsbn.js jsbn2.js prng4.js util.js rng.js ec.js sec.js ecdsa.js eckey.js > vendor-bundle.js
mv vendor-bundle.js ../
cd ../

File renamed without changes.
2 changes: 1 addition & 1 deletion util/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var buffertools = require('buffertools');
var browser;
if (!process.versions) {
// browser version
browser = require('../browser/vendor.js');
browser = require('../browser/vendor-bundle.js');
}


Expand Down

0 comments on commit 18b2d19

Please sign in to comment.