2016-05-31 10:53:23 +09:00
|
|
|
Package.describe({
|
2017-03-23 16:27:59 +09:00
|
|
|
name: 'vulcan:cloudinary',
|
2017-06-13 00:16:52 -07:00
|
|
|
summary: 'Vulcan file upload package.',
|
2019-02-16 18:10:16 +09:00
|
|
|
version: '1.12.17',
|
2019-02-12 13:00:46 +01:00
|
|
|
git: 'https://github.com/VulcanJS/Vulcan.git',
|
2016-05-31 10:53:23 +09:00
|
|
|
});
|
|
|
|
|
2019-02-12 13:00:46 +01:00
|
|
|
Package.onUse(function(api) {
|
2018-01-28 23:03:10 -07:00
|
|
|
api.versionsFrom('1.6.1');
|
2016-05-31 10:53:23 +09:00
|
|
|
|
2019-02-16 18:10:16 +09:00
|
|
|
api.use(['vulcan:core@1.12.17']);
|
2016-05-31 10:53:23 +09:00
|
|
|
|
2018-09-12 11:59:00 +09:00
|
|
|
api.mainModule('lib/client/main.js', 'client');
|
|
|
|
api.mainModule('lib/server/main.js', 'server');
|
2016-05-31 10:53:23 +09:00
|
|
|
});
|