mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 01:51:40 -05:00
19 lines
368 B
JavaScript
19 lines
368 B
JavaScript
Package.describe({
|
|
name: "vulcan:events",
|
|
summary: "Vulcan event tracking package",
|
|
version: '1.7.0',
|
|
git: "https://github.com/VulcanJS/Vulcan.git"
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
|
|
api.versionsFrom("METEOR@1.0");
|
|
|
|
api.use([
|
|
'vulcan:core@1.7.0',
|
|
]);
|
|
|
|
api.mainModule("lib/server.js", "server");
|
|
api.mainModule("lib/client.js", "client");
|
|
|
|
});
|