mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 01:51:40 -05:00
20 lines
414 B
JavaScript
20 lines
414 B
JavaScript
Package.describe({
|
|
name: 'vulcan:events-intercom',
|
|
summary: 'Vulcan Intercom integration package.',
|
|
version: '1.8.8',
|
|
git: "https://github.com/VulcanJS/Vulcan.git"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom('1.6.1');
|
|
|
|
api.use([
|
|
'vulcan:core@1.8.8',
|
|
'vulcan:events@1.8.8'
|
|
]);
|
|
|
|
api.mainModule("lib/client/main.js", "client");
|
|
api.mainModule("lib/server/main.js", "server");
|
|
|
|
});
|