Vulcan/packages/vulcan-newsletter/package.js

24 lines
484 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",
2017-08-02 19:02:18 +09:00
version: '1.7.0',
2017-08-01 14:23:07 +09:00
git: "https://github.com/VulcanJS/Vulcan.git"
});
Package.onUse(function (api) {
api.versionsFrom("METEOR@1.0");
api.use([
2017-08-02 19:02:18 +09:00
'vulcan:core@1.7.0',
'vulcan:posts@1.7.0',
'vulcan:comments@1.7.0',
'vulcan:categories@1.7.0',
'vulcan:email@1.7.0'
2015-06-08 09:54:42 +09:00
]);
2016-04-12 20:09:08 +09:00
api.mainModule('lib/server.js', 'server');
api.mainModule('lib/client.js', 'client');
});