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