mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
20 lines
428 B
JavaScript
20 lines
428 B
JavaScript
Package.describe({
|
|
name: "nova:events",
|
|
summary: "Telescope event tracking package",
|
|
version: "1.0.0",
|
|
git: "https://github.com/TelescopeJS/Telescope.git"
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
|
|
api.versionsFrom("METEOR@1.0");
|
|
|
|
api.use([
|
|
'nova:core@1.0.0',
|
|
'nova:posts@1.0.0', // needed to track posts click
|
|
]);
|
|
|
|
api.mainModule("lib/server.js", "server");
|
|
api.mainModule("lib/client.js", "client");
|
|
|
|
});
|