2015-04-22 07:50:11 +09:00
|
|
|
Package.describe({
|
|
|
|
name: 'telescope:lib',
|
|
|
|
summary: 'Telescope libraries.',
|
2015-07-01 15:51:27 +09:00
|
|
|
version: '0.21.1',
|
2015-05-16 12:05:53 +09:00
|
|
|
git: "https://github.com/TelescopeJS/Telescope.git"
|
2015-04-22 07:50:11 +09:00
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
|
2015-04-23 11:11:07 +09:00
|
|
|
var packages = [
|
2015-04-22 16:26:01 +09:00
|
|
|
'standard-app-packages',
|
2015-05-07 16:18:07 +09:00
|
|
|
'service-configuration',
|
|
|
|
'accounts-ui',
|
2015-04-22 16:26:01 +09:00
|
|
|
'accounts-base',
|
|
|
|
'accounts-password',
|
|
|
|
'accounts-twitter',
|
2015-05-12 17:27:18 +09:00
|
|
|
'accounts-facebook',
|
2015-07-10 11:05:13 +09:00
|
|
|
'check',
|
2015-07-14 11:40:58 +09:00
|
|
|
// 'audit-argument-checks',
|
2015-04-24 09:28:50 +09:00
|
|
|
'reactive-var',
|
2015-04-22 16:52:42 +09:00
|
|
|
'http',
|
2015-04-28 15:54:19 +09:00
|
|
|
'email',
|
2015-05-20 09:19:35 +09:00
|
|
|
'spiderable',
|
2015-05-16 12:05:53 +09:00
|
|
|
'aldeed:simple-schema@1.3.3',
|
2015-04-22 16:26:01 +09:00
|
|
|
'aldeed:collection2@2.3.3',
|
2015-05-12 08:39:48 +09:00
|
|
|
'sacha:autoform@5.1.2',
|
2015-05-11 12:39:49 +09:00
|
|
|
'aldeed:template-extension@3.4.3',
|
2015-06-15 11:09:15 +09:00
|
|
|
'tap:i18n@1.5.0',
|
2015-04-22 16:26:01 +09:00
|
|
|
'fourseven:scss@2.1.1',
|
2015-06-05 10:55:52 +09:00
|
|
|
'iron:router@1.0.9',
|
2015-05-13 11:01:03 +09:00
|
|
|
'dburles:collection-helpers@1.0.3',
|
2015-05-02 09:52:39 +09:00
|
|
|
// 'meteorhacks:flow-router@1.5.0',
|
|
|
|
// 'meteorhacks:flow-layout@1.1.1',
|
2015-04-22 16:26:01 +09:00
|
|
|
'matb33:collection-hooks@0.7.11',
|
|
|
|
'chuangbo:marked@0.3.5',
|
|
|
|
'meteorhacks:fast-render@2.3.2',
|
2015-07-07 12:54:23 +09:00
|
|
|
'meteorhacks:subs-manager@1.4.0',
|
2015-04-22 16:26:01 +09:00
|
|
|
'percolatestudio:synced-cron@1.1.0',
|
|
|
|
'useraccounts:unstyled@1.8.1',
|
|
|
|
'manuelschoebel:ms-seo@0.4.1',
|
|
|
|
'aramk:tinycolor@1.1.0_1',
|
|
|
|
'momentjs:moment@2.10.3',
|
|
|
|
'sacha:spin@0.2.4',
|
|
|
|
'aslagle:reactive-table@0.7.3',
|
2015-06-25 11:00:23 +09:00
|
|
|
'utilities:avatar@0.7.12',
|
2015-04-23 09:14:51 +09:00
|
|
|
'fortawesome:fontawesome@4.3.0',
|
2015-04-23 11:11:07 +09:00
|
|
|
'ccan:cssreset@1.0.0',
|
2015-04-27 17:15:16 +09:00
|
|
|
'djedi:sanitize-html@1.6.1',
|
2015-04-28 11:32:53 +09:00
|
|
|
'dburles:collection-helpers@1.0.3',
|
2015-05-16 12:05:53 +09:00
|
|
|
'jparker:gravatar@0.3.1',
|
2015-05-20 15:33:20 +09:00
|
|
|
'sanjo:meteor-files-helpers@1.1.0_4',
|
2015-06-08 09:54:42 +09:00
|
|
|
'cmather:handlebars-server@0.2.0',
|
2015-06-18 13:04:38 +09:00
|
|
|
'chuangbo:cookie@1.1.0',
|
|
|
|
'ongoworks:speakingurl@5.0.1'
|
2015-04-23 11:11:07 +09:00
|
|
|
];
|
2015-04-22 07:50:11 +09:00
|
|
|
|
2015-04-23 11:11:07 +09:00
|
|
|
api.use(packages);
|
|
|
|
|
|
|
|
api.imply(packages);
|
2015-04-22 07:50:11 +09:00
|
|
|
|
|
|
|
api.addFiles([
|
|
|
|
'lib/core.js',
|
2015-04-24 09:28:50 +09:00
|
|
|
'lib/utils.js',
|
2015-04-23 15:42:05 +09:00
|
|
|
'lib/callbacks.js',
|
2015-04-24 09:28:50 +09:00
|
|
|
'lib/collections.js',
|
2015-04-23 17:45:37 +09:00
|
|
|
'lib/modules.js',
|
2015-04-22 07:50:11 +09:00
|
|
|
'lib/config.js',
|
|
|
|
'lib/deep.js',
|
|
|
|
'lib/deep_extend.js',
|
|
|
|
'lib/autolink.js',
|
|
|
|
'lib/themes.js',
|
2015-04-24 10:49:24 +09:00
|
|
|
'lib/menus.js',
|
2015-04-22 07:50:11 +09:00
|
|
|
'lib/base.js',
|
|
|
|
'lib/colors.js',
|
|
|
|
'lib/icons.js'
|
|
|
|
], ['client', 'server']);
|
|
|
|
|
2015-06-17 09:15:26 +09:00
|
|
|
api.addFiles([
|
|
|
|
'lib/client/jquery.exists.js',
|
|
|
|
'lib/client/template_replacement.js'
|
|
|
|
], ['client']);
|
2015-04-22 07:50:11 +09:00
|
|
|
|
|
|
|
api.export([
|
|
|
|
'Telescope',
|
|
|
|
'_',
|
|
|
|
|
|
|
|
'getTemplate',
|
|
|
|
'templates',
|
|
|
|
|
|
|
|
'themeSettings',
|
|
|
|
|
|
|
|
'getVotePower'
|
|
|
|
]);
|
|
|
|
|
|
|
|
});
|