Skip to content

Commit

Permalink
Merge pull request #122 from frozeman/apiOverhaul
Browse files Browse the repository at this point in the history
fixed meteor package
  • Loading branch information
debris committed Mar 16, 2015
2 parents 99795e3 + fb99d10 commit 3550f91
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion package-init.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/* jshint ignore:start */

if(typeof web3 === 'undefined') {
web3 = require('web3');
web3 = require('ethereum.js');
BigNumber = require('bignumber.js');
}

/* jshint ignore:end */
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Package.describe({
Package.onUse(function(api) {
api.versionsFrom('1.0.3.2');

api.use('3stack:bignumber@2.0.0', 'client');
// api.use('3stack:bignumber@2.0.0', 'client');

api.export('BigNumber', 'client');
api.export('web3', 'client');
Expand Down

0 comments on commit 3550f91

Please sign in to comment.