2015-04-22 07:50:11 +09:00
|
|
|
Package.describe({
|
2016-02-24 10:09:23 +09:00
|
|
|
name: "nova:posts",
|
2015-04-22 07:50:11 +09:00
|
|
|
summary: "Telescope posts package",
|
2016-07-24 19:15:55 +09:00
|
|
|
version: "0.26.5-nova",
|
2015-04-22 07:50:11 +09:00
|
|
|
git: "https://github.com/TelescopeJS/telescope-posts.git"
|
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
|
|
|
|
api.use([
|
2016-07-24 19:15:55 +09:00
|
|
|
'nova:core@0.26.5-nova',
|
|
|
|
'nova:users@0.26.5-nova',
|
2016-06-06 10:06:53 +09:00
|
|
|
'utilities:react-list-container@0.1.10'
|
2015-04-22 07:50:11 +09:00
|
|
|
]);
|
|
|
|
|
2016-02-17 21:57:07 +09:00
|
|
|
api.use([
|
2016-07-24 19:15:55 +09:00
|
|
|
'nova:notifications@0.26.5-nova',
|
|
|
|
'nova:email@0.26.5-nova'
|
2016-02-17 21:57:07 +09:00
|
|
|
], ['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");
|
2015-04-22 07:50:11 +09:00
|
|
|
|
|
|
|
});
|