mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 01:51:40 -05:00
18 lines
442 B
JavaScript
18 lines
442 B
JavaScript
Package.describe({
|
|
name: 'vulcan:voting',
|
|
summary: 'Vulcan scoring package.',
|
|
version: '1.12.17',
|
|
git: 'https://github.com/VulcanJS/Vulcan.git',
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
api.versionsFrom('1.6.1');
|
|
|
|
api.use(
|
|
['fourseven:scss@4.10.0', 'vulcan:core@1.12.17', 'vulcan:i18n@1.12.17'],
|
|
['client', 'server'],
|
|
);
|
|
|
|
api.mainModule('lib/server/main.js', 'server');
|
|
api.mainModule('lib/client/main.js', 'client');
|
|
});
|