Vulcan/packages/vulcan-events/package.js

20 lines
368 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",
2017-08-02 19:02:18 +09:00
version: '1.7.0',
2017-06-13 00:16:52 -07:00
git: "https://github.com/VulcanJS/Vulcan.git"
});
Package.onUse(function(api) {
api.versionsFrom("METEOR@1.0");
api.use([
2017-08-02 19:02:18 +09:00
'vulcan:core@1.7.0',
]);
2016-06-23 15:16:32 +09:00
api.mainModule("lib/server.js", "server");
api.mainModule("lib/client.js", "client");
});