Vulcan/packages/nova-events/package.js

29 lines
493 B
JavaScript
Raw Normal View History

Package.describe({
name: "nova:events",
summary: "Telescope event tracking package",
2016-04-14 10:27:27 +09:00
version: "0.26.0-nova",
git: "https://github.com/TelescopeJS/Telescope.git"
});
Package.onUse(function(api) {
api.versionsFrom("METEOR@1.0");
api.use([
2016-04-14 10:27:27 +09:00
'nova:lib@0.26.0-nova',
// 'nova:i18n@0.26.0-nova'
]);
api.addFiles([
'lib/events.js'
], ['client', 'server']);
api.addFiles([
2016-02-16 15:08:30 +09:00
// 'lib/client/analytics.js'
], ['client']);
api.export([
'Events'
]);
});