Use a commit of node-mongo-native with a unique package.json version.

Avoids confusing the npm cache.
This commit is contained in:
David Glasser
2013-07-19 11:51:58 -07:00
parent 18168429d8
commit ab0e8e770e
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
{
"dependencies": {
"mongodb": {
"from": "https://github.com/meteor/node-mongodb-native/tarball/8cde6990c24fcafbac892c5ccb1d59e40601c20c",
"from": "https://github.com/meteor/node-mongodb-native/tarball/20e17040c5eccf3c431788dd281b8099cd2099f8",
"dependencies": {
"bson": {
"version": "0.2.1"

View File

@@ -13,7 +13,7 @@ Package.describe({
});
Npm.depends({
mongodb: "https://github.com/meteor/node-mongodb-native/tarball/8cde6990c24fcafbac892c5ccb1d59e40601c20c"});
mongodb: "https://github.com/meteor/node-mongodb-native/tarball/20e17040c5eccf3c431788dd281b8099cd2099f8"});
Package.on_use(function (api) {
api.use(['random', 'ejson', 'json', 'underscore', 'minimongo', 'logging', 'livedata'],