mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
28 lines
623 B
JavaScript
28 lines
623 B
JavaScript
Package.describe({
|
|
name: "vulcan:base-components",
|
|
summary: "Telescope components package",
|
|
version: "1.2.0",
|
|
git: "https://github.com/TelescopeJS/Telescope.git"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
api.use([
|
|
// Nova packages
|
|
'vulcan:core@1.2.0',
|
|
'vulcan:posts@1.2.0',
|
|
'vulcan:comments@1.2.0',
|
|
'vulcan:voting@1.2.0',
|
|
|
|
// third-party packages
|
|
'fortawesome:fontawesome@4.5.0',
|
|
'tmeasday:check-npm-versions@0.3.1',
|
|
'std:accounts-ui@1.2.19',
|
|
]);
|
|
|
|
api.mainModule("lib/server.js", "server");
|
|
api.mainModule("lib/client.js", "client");
|
|
|
|
});
|