mirror of
https://github.com/vale981/Vulcan
synced 2025-03-08 11:01:38 -05:00
53 lines
1.5 KiB
JavaScript
53 lines
1.5 KiB
JavaScript
Package.describe({
|
|
name: "telescope:comments",
|
|
summary: "Telescope comments package",
|
|
version: "0.20.6",
|
|
git: "https://github.com/TelescopeJS/Telescope.git"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
api.use([
|
|
'telescope:lib@0.20.6',
|
|
'telescope:i18n@0.20.6',
|
|
'telescope:settings@0.20.6',
|
|
'telescope:users@0.20.6'
|
|
]);
|
|
|
|
api.addFiles([
|
|
'lib/comments.js',
|
|
'lib/methods.js',
|
|
'lib/callbacks.js',
|
|
'lib/views.js',
|
|
'lib/parameters.js',
|
|
'lib/routes.js'
|
|
], ['client', 'server']);
|
|
|
|
api.addFiles([
|
|
'lib/client/templates/comment_edit.html',
|
|
'lib/client/templates/comment_edit.js',
|
|
'lib/client/templates/comment_submit.html',
|
|
'lib/client/templates/comment_submit.js',
|
|
'lib/client/templates/comment_item.html',
|
|
'lib/client/templates/comment_item.js',
|
|
'lib/client/templates/comment_list.html',
|
|
'lib/client/templates/comment_list.js',
|
|
'lib/client/templates/comment_reply.html',
|
|
'lib/client/templates/comment_reply.js',
|
|
'lib/client/templates/comments_list/comments_list.html',
|
|
'lib/client/templates/comments_list/comments_list.js',
|
|
'lib/client/templates/comments_list/comments_list_compact.html',
|
|
'lib/client/templates/comments_list/comments_list_compact.js',
|
|
'lib/client/templates/comments_list/comments_list_controller.html',
|
|
'lib/client/templates/comments_list/comments_list_controller.js',
|
|
], ['client']);
|
|
|
|
api.addFiles([
|
|
'lib/server/publications.js',
|
|
], ['server']);
|
|
|
|
api.export('Comments');
|
|
|
|
});
|