I had the same problem. Instead ethereum:web3 Meteor package I have used web3@0.20.1 NPM package, and it works ok (Meteor version 1.5.1). So, if you using ethereum:web3 you probably need to run:
meteor remove ethereum:web3
meteor npm install web3@0.20.1 --save
and replace
import { Web3 } from 'meteor/ethereum:web3';
with
import Web3 from 'web3';