2018-11-04 16:32:34 +09:00
|
|
|
Package.describe({
|
2018-12-02 10:28:04 +09:00
|
|
|
name: 'vulcan:errors',
|
|
|
|
summary: 'Vulcan error tracking package',
|
2019-01-02 14:41:41 +09:00
|
|
|
version: '1.12.13',
|
2018-12-02 10:28:04 +09:00
|
|
|
git: 'https://github.com/VulcanJS/Vulcan.git'
|
2018-11-04 16:32:34 +09:00
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function(api) {
|
|
|
|
|
|
|
|
api.versionsFrom('1.6.1');
|
|
|
|
|
|
|
|
api.use([
|
|
|
|
'ecmascript',
|
2019-01-02 14:41:41 +09:00
|
|
|
'vulcan:core@1.12.13',
|
2018-11-04 16:32:34 +09:00
|
|
|
]);
|
|
|
|
|
2018-12-02 10:28:04 +09:00
|
|
|
api.mainModule('lib/server/main.js', 'server');
|
2018-11-04 16:32:34 +09:00
|
|
|
api.mainModule('lib/client/main.js', 'client');
|
|
|
|
|
|
|
|
});
|