mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
21 lines
456 B
JavaScript
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");
|
|
});
|