2014-07-05 11:54:36 +09:00
|
|
|
Package.describe({summary: "Telescope base package"});
|
2014-06-22 14:53:17 +09:00
|
|
|
|
2014-08-28 13:39:30 +09:00
|
|
|
Package.onUse(function (api) {
|
2014-06-22 14:53:17 +09:00
|
|
|
|
2015-04-20 14:58:48 +09:00
|
|
|
// doesn't do anything anymore
|
2014-06-22 14:53:17 +09:00
|
|
|
|
2015-04-20 15:20:10 +09:00
|
|
|
// api.use(['telescope:i18n', 'telescope:telescope-lib', 'telescope:telescope-posts', 'aldeed:simple-schema', 'check']);
|
2015-04-20 14:58:48 +09:00
|
|
|
// api.imply(['aldeed:simple-schema']);
|
2014-06-22 14:53:17 +09:00
|
|
|
|
2015-04-20 14:58:48 +09:00
|
|
|
// api.add_files(['lib/base.js'], ['client', 'server']);
|
|
|
|
// api.add_files(['lib/colors.js'], ['client', 'server']);
|
|
|
|
// api.add_files(['lib/icons.js'], ['client', 'server']);
|
2015-04-20 13:57:37 +09:00
|
|
|
|
2015-04-20 14:58:48 +09:00
|
|
|
// api.export([
|
2015-04-06 18:34:48 +09:00
|
|
|
|
2015-04-20 14:58:48 +09:00
|
|
|
// 'addToCommentsSchema',
|
|
|
|
// 'registerCommentProperty',
|
2015-03-22 11:19:27 +09:00
|
|
|
|
2015-04-20 14:58:48 +09:00
|
|
|
// 'viewParameters',
|
2014-08-01 09:07:58 +09:00
|
|
|
|
2015-04-20 14:58:48 +09:00
|
|
|
// 'footerModules',
|
|
|
|
// 'heroModules',
|
|
|
|
// 'threadModules',
|
|
|
|
// 'postListTopModules',
|
|
|
|
// 'postModules',
|
|
|
|
// 'postThumbnail',
|
|
|
|
// 'postHeading',
|
|
|
|
// 'postMeta',
|
2014-08-01 09:07:58 +09:00
|
|
|
|
2015-04-20 14:58:48 +09:00
|
|
|
// 'postSubmitRenderedCallbacks',
|
|
|
|
// 'postEditRenderedCallbacks',
|
2015-01-19 11:40:27 +09:00
|
|
|
|
2015-04-20 14:58:48 +09:00
|
|
|
// 'commentClassCallbacks',
|
2014-09-20 09:53:58 +09:00
|
|
|
|
2015-04-20 14:58:48 +09:00
|
|
|
// 'commentSubmitRenderedCallbacks',
|
|
|
|
// 'commentSubmitClientCallbacks',
|
|
|
|
// 'commentSubmitMethodCallbacks',
|
|
|
|
// 'commentAfterSubmitMethodCallbacks',
|
2014-10-06 17:11:43 -06:00
|
|
|
|
2015-04-20 14:58:48 +09:00
|
|
|
// 'commentEditRenderedCallbacks',
|
|
|
|
// 'commentEditClientCallbacks',
|
|
|
|
// 'commentEditMethodCallbacks',
|
|
|
|
// 'commentAfterEditMethodCallbacks',
|
2015-03-28 18:30:26 +09:00
|
|
|
|
2015-04-20 14:58:48 +09:00
|
|
|
// 'upvoteCallbacks',
|
|
|
|
// 'downvoteCallbacks',
|
|
|
|
// 'cancelUpvoteCallbacks',
|
|
|
|
// 'cancelDownvoteCallbacks',
|
|
|
|
// 'upvoteMethodCallbacks',
|
|
|
|
// 'downvoteMethodCallbacks',
|
|
|
|
// 'cancelUpvoteMethodCallbacks',
|
|
|
|
// 'cancelDownvoteMethodCallbacks',
|
2015-04-20 13:57:37 +09:00
|
|
|
|
2015-04-20 14:58:48 +09:00
|
|
|
// 'userEditClientCallbacks',
|
|
|
|
// 'userProfileCompleteChecks',
|
|
|
|
// 'userProfileCompletedCallbacks',
|
2015-03-28 18:30:26 +09:00
|
|
|
|
2015-04-20 14:58:48 +09:00
|
|
|
// 'userProfileDisplay',
|
|
|
|
// 'userProfileEdit',
|
|
|
|
// 'userCreatedCallbacks',
|
2014-08-15 12:30:51 +09:00
|
|
|
|
2015-04-20 14:58:48 +09:00
|
|
|
// 'getTemplate',
|
|
|
|
// 'templates',
|
2015-03-24 13:13:04 +09:00
|
|
|
|
2015-04-20 14:58:48 +09:00
|
|
|
// 'getIcon',
|
|
|
|
// 'icons',
|
2015-03-24 17:03:37 +09:00
|
|
|
|
2015-04-20 14:58:48 +09:00
|
|
|
// 'colorTable',
|
|
|
|
// 'registerElementColor',
|
2015-03-07 23:30:20 -07:00
|
|
|
|
2015-04-20 14:58:48 +09:00
|
|
|
// 'themeSettings',
|
|
|
|
|
|
|
|
// 'getVotePower'
|
|
|
|
// ]);
|
2014-10-06 17:11:43 -06:00
|
|
|
});
|