mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
77 lines
1.8 KiB
JavaScript
77 lines
1.8 KiB
JavaScript
Package.describe({
|
|
name: "telescope:subscribe-to-posts",
|
|
summary: "Subscribe to posts to be notified when they get new comments",
|
|
version: "0.1.0",
|
|
git: "https://github.com/TelescopeJS/telescope-subscribe-to-posts.git"
|
|
});
|
|
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom("METEOR@1.0");
|
|
|
|
// --------------------------- 1. Meteor packages dependencies ---------------------------
|
|
|
|
// automatic (let the package specify where it's needed)
|
|
|
|
api.use([
|
|
'tap:i18n@1.4.1',
|
|
'iron:router@1.0.5',
|
|
'telescope:lib@0.3.0',
|
|
'telescope:i18n@0.1.0',
|
|
'fourseven:scss@2.1.1',
|
|
'telescope:notifications@0.1.0',
|
|
'telescope:posts@0.1.2'
|
|
]);
|
|
|
|
// client
|
|
|
|
api.use([
|
|
'jquery', // useful for DOM interactions
|
|
'underscore', // JavaScript swiss army knife library
|
|
'templating', // required for client-side templates
|
|
'telescope:messages@0.1.0'
|
|
], ['client']);
|
|
|
|
// ---------------------------------- 2. Files to include ----------------------------------
|
|
|
|
// i18n config (must come first)
|
|
|
|
api.addFiles([
|
|
'package-tap.i18n'
|
|
], ['client', 'server']);
|
|
|
|
// both
|
|
|
|
api.addFiles([
|
|
'lib/subscribe-to-posts.js',
|
|
], ['client', 'server']);
|
|
|
|
// client
|
|
|
|
api.addFiles([
|
|
'lib/client/templates/post_subscribe.html',
|
|
'lib/client/templates/post_subscribe.js',
|
|
'lib/client/templates/user_subscribed_posts.html',
|
|
'lib/client/templates/user_subscribed_posts.js',
|
|
'lib/client/stylesheets/subscribe-to-posts.scss'
|
|
], ['client']);
|
|
|
|
// server
|
|
|
|
api.addFiles([
|
|
'lib/server/publications.js'
|
|
], ['server']);
|
|
|
|
// i18n languages (must come last)
|
|
|
|
api.addFiles([
|
|
'i18n/en.i18n.json',
|
|
], ['client', 'server']);
|
|
|
|
api.export([
|
|
'subscribeItem',
|
|
'unsubscribeItem'
|
|
]);
|
|
|
|
});
|