mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00

* Telescope.notifications.create -> import { createNotifications } from 'meteor/nova:notifications' ; * leverage Meteor's weak dependencies on packages & move code related to emails / notifications from nova:posts et al. to nova:notifications
20 lines
394 B
JavaScript
20 lines
394 B
JavaScript
Package.describe({
|
|
name: "nova:posts",
|
|
summary: "Telescope posts package",
|
|
version: "1.0.0",
|
|
git: "https://github.com/TelescopeJS/telescope-posts.git"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
api.use([
|
|
'nova:core@1.0.0',
|
|
'nova:users@1.0.0',
|
|
]);
|
|
|
|
api.mainModule("lib/server.js", "server");
|
|
api.mainModule("lib/client.js", "client");
|
|
|
|
});
|