mirror of
https://github.com/vale981/Vulcan
synced 2025-03-12 13:36:37 -04:00
23 lines
443 B
JavaScript
23 lines
443 B
JavaScript
![]() |
Package.describe({
|
||
|
name: 'vulcan:errors-sentry',
|
||
|
summary: 'Vulcan Sentry error tracking package',
|
||
|
version: '1.12.8',
|
||
|
git: 'https://github.com/VulcanJS/Vulcan.git'
|
||
|
});
|
||
|
|
||
|
|
||
|
Package.onUse(function(api) {
|
||
|
api.versionsFrom('1.6.1');
|
||
|
|
||
|
api.use([
|
||
|
'ecmascript',
|
||
|
'vulcan:core',
|
||
|
'vulcan:users',
|
||
|
'vulcan:errors',
|
||
|
]);
|
||
|
|
||
|
api.mainModule('lib/server/main.js', 'server');
|
||
|
api.mainModule('lib/client/main.js', 'client');
|
||
|
|
||
|
});
|