Files
meteor/packages/npm-mongo/package.js

21 lines
456 B
JavaScript

// This has been moved out of the `mongo` package so it can be used by the tool
// via isopacket, without having to also load ddp-server.
Package.describe({
summary: "Wrapper around the mongo npm package",
version: "3.1.2",
documentation: null
});
Npm.depends({
mongodb: "3.1.13"
});
Package.onUse(function (api) {
api.addFiles("wrapper.js", "server");
api.export([
"NpmModuleMongodb",
"NpmModuleMongodbVersion",
], "server");
});