2015-04-22 07:50:11 +09:00
|
|
|
Package.describe({
|
2016-02-24 10:09:23 +09:00
|
|
|
name: "nova:email",
|
2015-04-22 07:50:11 +09:00
|
|
|
summary: "Telescope email package",
|
2016-10-01 18:11:37 +02:00
|
|
|
version: "0.27.2-nova",
|
2015-04-22 07:50:11 +09:00
|
|
|
git: "https://github.com/TelescopeJS/telescope-email.git"
|
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
|
|
|
|
api.use([
|
2016-10-01 18:11:37 +02:00
|
|
|
'nova:core@0.27.2-nova'
|
2015-04-22 16:52:42 +09:00
|
|
|
]);
|
2015-04-22 07:50:11 +09:00
|
|
|
|
2016-06-23 16:42:06 +09:00
|
|
|
api.mainModule("lib/server.js", "server");
|
|
|
|
api.mainModule("lib/client.js", "client");
|
2015-04-22 07:50:11 +09:00
|
|
|
|
|
|
|
});
|