Vulcan/packages/vulcan-events-intercom/package.js

21 lines
417 B
JavaScript
Raw Normal View History

2017-10-17 10:27:40 +09:00
Package.describe({
name: 'vulcan:events-intercom',
2017-10-17 10:27:40 +09:00
summary: 'Vulcan Intercom integration package.',
2018-09-17 09:54:10 +09:00
version: '1.12.8',
2018-09-12 11:59:00 +09:00
git: 'https://github.com/VulcanJS/Vulcan.git'
2017-10-17 10:27:40 +09:00
});
Package.onUse(function (api) {
2018-01-28 23:03:10 -07:00
api.versionsFrom('1.6.1');
2017-10-17 10:27:40 +09:00
api.use([
2018-09-17 09:54:10 +09:00
'vulcan:core@1.12.8',
'vulcan:events@1.12.8'
2017-10-17 10:27:40 +09:00
]);
2018-09-12 11:59:00 +09:00
api.mainModule('lib/client/main.js', 'client');
api.mainModule('lib/server/main.js', 'server');
2017-10-17 10:27:40 +09:00
});