2017-03-29 15:48:44 +09:00
|
|
|
Package.describe({
|
|
|
|
name: "example-forum",
|
|
|
|
summary: "Telescope forum package",
|
2017-04-09 15:47:08 +09:00
|
|
|
version: '1.3.1',
|
2017-03-29 15:48:44 +09:00
|
|
|
git: "https://github.com/TelescopeJS/Telescope.git"
|
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
|
|
|
|
api.use([
|
|
|
|
|
|
|
|
// vulcan core
|
2017-04-09 15:47:08 +09:00
|
|
|
'vulcan:core@1.3.1',
|
2017-03-29 15:48:44 +09:00
|
|
|
|
|
|
|
// vulcan packages
|
2017-04-09 15:47:08 +09:00
|
|
|
'vulcan:posts@1.3.1',
|
|
|
|
'vulcan:comments@1.3.1',
|
|
|
|
'vulcan:voting@1.3.1',
|
|
|
|
'vulcan:accounts@1.3.1',
|
2017-03-29 15:48:44 +09:00
|
|
|
'vulcan:email',
|
2017-03-29 22:36:17 +09:00
|
|
|
'vulcan:forms',
|
2017-03-29 15:48:44 +09:00
|
|
|
'vulcan:newsletter',
|
|
|
|
'vulcan:notifications',
|
|
|
|
'vulcan:getting-started',
|
|
|
|
'vulcan:categories',
|
|
|
|
'vulcan:events',
|
|
|
|
'vulcan:embedly',
|
|
|
|
'vulcan:api',
|
|
|
|
'vulcan:rss',
|
|
|
|
'vulcan:subscribe',
|
|
|
|
|
|
|
|
'vulcan:base-components',
|
|
|
|
'vulcan:base-styles',
|
|
|
|
'vulcan:email-templates',
|
|
|
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
// api.mainModule("lib/server.js", "server");
|
|
|
|
// api.mainModule("lib/client.js", "client");
|
|
|
|
|
|
|
|
});
|