Vulcan/packages/vulcan-newsletter/package.js

21 lines
406 B
JavaScript
Raw Normal View History

Package.describe({
2017-03-23 16:27:59 +09:00
name: "vulcan:newsletter",
2017-06-13 00:16:52 -07:00
summary: "Vulcan email newsletter package",
2018-03-05 09:54:26 +09:00
version: '1.8.11',
2017-08-01 14:23:07 +09:00
git: "https://github.com/VulcanJS/Vulcan.git"
});
Package.onUse(function (api) {
2018-01-28 23:03:10 -07:00
api.versionsFrom('1.6.1');
api.use([
2018-03-05 09:54:26 +09:00
'vulcan:core@1.8.11',
'vulcan:email@1.8.11'
2015-06-08 09:54:42 +09:00
]);
api.mainModule('lib/server/main.js', 'server');
api.mainModule('lib/client/main.js', 'client');
});