2015-04-22 07:50:11 +09:00
|
|
|
Package.describe({
|
|
|
|
name: "telescope:email",
|
|
|
|
summary: "Telescope email package",
|
2015-07-22 15:23:51 +09:00
|
|
|
version: "0.22.1",
|
2015-04-22 07:50:11 +09:00
|
|
|
git: "https://github.com/TelescopeJS/telescope-email.git"
|
|
|
|
});
|
|
|
|
|
|
|
|
Npm.depends({
|
|
|
|
"html-to-text": "0.1.0"
|
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
|
|
|
|
api.use([
|
2015-07-22 15:23:51 +09:00
|
|
|
'telescope:core@0.22.1',
|
2015-05-20 15:33:20 +09:00
|
|
|
'sacha:juice@0.1.4'
|
2015-04-22 16:52:42 +09:00
|
|
|
]);
|
2015-04-22 07:50:11 +09:00
|
|
|
|
|
|
|
// do not use for now since tap:i18n doesn't support server-side templates yet
|
2015-05-01 18:22:00 +02:00
|
|
|
// api.addFiles([
|
2015-04-22 07:50:11 +09:00
|
|
|
// 'package-tap.i18n'
|
|
|
|
// ], ['client', 'server']);
|
|
|
|
|
2015-05-01 18:22:00 +02:00
|
|
|
api.addFiles([
|
2015-04-22 07:50:11 +09:00
|
|
|
'lib/server/email.js',
|
|
|
|
'lib/server/templates/emailInvite.handlebars',
|
|
|
|
'lib/server/templates/emailTest.handlebars',
|
|
|
|
'lib/server/templates/emailWrapper.handlebars',
|
|
|
|
], ['server']);
|
|
|
|
|
2015-05-01 18:22:00 +02:00
|
|
|
api.addFiles([
|
2015-04-22 07:50:11 +09:00
|
|
|
"i18n/de.i18n.json",
|
|
|
|
"i18n/en.i18n.json",
|
|
|
|
"i18n/es.i18n.json",
|
|
|
|
"i18n/fr.i18n.json",
|
|
|
|
"i18n/it.i18n.json",
|
|
|
|
"i18n/zh-CN.i18n.json",
|
|
|
|
], ["client", "server"]);
|
|
|
|
|
|
|
|
});
|