mirror of
https://github.com/vale981/Vulcan
synced 2025-03-07 02:21:43 -05:00
28 lines
490 B
JavaScript
28 lines
490 B
JavaScript
Package.describe({
|
|
name: "nova:events",
|
|
summary: "Telescope event tracking package",
|
|
version: "0.26.3-nova",
|
|
git: "https://github.com/TelescopeJS/Telescope.git"
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
|
|
api.versionsFrom("METEOR@1.0");
|
|
|
|
api.use([
|
|
'nova:lib@0.26.3-nova',
|
|
// 'nova:i18n@0.26.3-nova'
|
|
]);
|
|
|
|
api.addFiles([
|
|
'lib/events.js'
|
|
], ['client', 'server']);
|
|
|
|
api.addFiles([
|
|
'lib/client/analytics.js'
|
|
], ['client']);
|
|
|
|
api.export([
|
|
'Events'
|
|
]);
|
|
});
|