mirror of
https://github.com/vale981/Vulcan
synced 2025-03-08 11:01:38 -05:00
31 lines
541 B
JavaScript
31 lines
541 B
JavaScript
Package.describe({
|
|
name: 'vulcan:cloudinary',
|
|
summary: 'Telescope file upload package.',
|
|
version: '1.3.0',
|
|
git: "https://github.com/TelescopeJS/Telescope.git"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
api.use([
|
|
'vulcan:posts@1.3.0',
|
|
'vulcan:core@1.3.0'
|
|
]);
|
|
|
|
api.addFiles([
|
|
'lib/custom_fields.js'
|
|
], ['client', 'server']);
|
|
|
|
api.addFiles([
|
|
|
|
], ['client']);
|
|
|
|
api.addFiles([
|
|
'lib/server/cloudinary.js'
|
|
], ['server']);
|
|
|
|
api.mainModule("lib/server.js", "server");
|
|
|
|
});
|