Vulcan/packages/vulcan-events/package.js

20 lines
373 B
JavaScript
Raw Normal View History

Package.describe({
2017-03-23 16:27:59 +09:00
name: "vulcan:events",
2017-06-13 00:16:52 -07:00
summary: "Vulcan event tracking package",
2018-02-03 11:48:41 +09:00
version: '1.8.9',
2017-06-13 00:16:52 -07:00
git: "https://github.com/VulcanJS/Vulcan.git"
});
Package.onUse(function(api) {
2018-01-28 23:03:10 -07:00
api.versionsFrom('1.6.1');
api.use([
2018-02-03 11:48:41 +09:00
'vulcan:core@1.8.9',
]);
api.mainModule("lib/server/main.js", "server");
api.mainModule('lib/client/main.js', 'client');
});