mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 20:16:39 -04:00
49 lines
1 KiB
JavaScript
49 lines
1 KiB
JavaScript
Package.describe({
|
|
name: "telescope:core",
|
|
summary: "Telescope core package",
|
|
version: "0.1.0",
|
|
git: "https://github.com/TelescopeJS/Telescope.git"
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
|
|
api.versionsFrom("METEOR@1.0");
|
|
|
|
api.use([
|
|
'aldeed:simple-schema@1.3.2',
|
|
'aldeed:autoform@5.1.2',
|
|
'tap:i18n@1.4.1',
|
|
'fourseven:scss@2.1.1',
|
|
'iron:router@1.0.5',
|
|
'templating',
|
|
'telescope:messages@0.1.0',
|
|
'telescope:lib@0.3.0',
|
|
'matb33:collection-hooks@0.7.11',
|
|
'chuangbo:marked@0.3.5',
|
|
'meteorhacks:fast-render@2.3.2',
|
|
'meteorhacks:subs-manager@1.3.0'
|
|
]);
|
|
|
|
api.addFiles([
|
|
'lib/router/config.js',
|
|
'lib/router/filters.js',
|
|
'lib/router/admin.js',
|
|
'lib/router/server.js'
|
|
], ['client', 'server']);
|
|
|
|
api.addFiles([
|
|
// 'lib/client/templates/page.html',
|
|
], 'client');
|
|
|
|
api.addFiles([
|
|
// 'lib/server/publications.js'
|
|
], ['server']);
|
|
|
|
api.addFiles([
|
|
"i18n/en.i18n.json"
|
|
], ["client", "server"]);
|
|
|
|
api.export([
|
|
'coreSubscriptions'
|
|
]);
|
|
});
|