mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00
26 lines
578 B
JavaScript
26 lines
578 B
JavaScript
Package.describe({
|
|
name: "nova:posts",
|
|
summary: "Telescope posts package",
|
|
version: "0.26.5-nova",
|
|
git: "https://github.com/TelescopeJS/telescope-posts.git"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
api.use([
|
|
'nova:core@0.26.5-nova',
|
|
'nova:users@0.26.5-nova',
|
|
'utilities:react-list-container@0.1.10'
|
|
]);
|
|
|
|
api.use([
|
|
'nova:notifications@0.26.5-nova',
|
|
'nova:email@0.26.5-nova'
|
|
], ['client', 'server'], {weak: true});
|
|
|
|
api.mainModule("lib/server.js", "server");
|
|
api.mainModule("lib/client.js", "client");
|
|
|
|
});
|