Vulcan/packages/nova-posts/package.js

27 lines
578 B
JavaScript
Raw Normal View History

Package.describe({
name: "nova:posts",
summary: "Telescope posts package",
2016-10-19 09:54:15 +02:00
version: "0.27.3-nova",
git: "https://github.com/TelescopeJS/telescope-posts.git"
});
Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
2016-10-19 09:54:15 +02:00
'nova:core@0.27.3-nova',
'nova:users@0.27.3-nova',
'utilities:react-list-container@0.1.10'
]);
api.use([
2016-10-19 09:54:15 +02:00
'nova:notifications@0.27.3-nova',
'nova:email@0.27.3-nova'
], ['client', 'server'], {weak: true});
2015-06-15 19:05:42 +09:00
2016-06-23 12:17:39 +09:00
api.mainModule("lib/server.js", "server");
api.mainModule("lib/client.js", "client");
});