Vulcan/packages/vulcan-posts/package.js

22 lines
417 B
JavaScript
Raw Normal View History

Package.describe({
2017-03-23 16:27:59 +09:00
name: "vulcan:posts",
2017-06-13 00:16:52 -07:00
summary: "Vulcan posts 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:events@1.7.0',
'vulcan:newsletter@1.7.0',
]);
2016-06-23 12:17:39 +09:00
api.mainModule("lib/server.js", "server");
api.mainModule("lib/client.js", "client");
});