mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 01:51:40 -05:00
19 lines
380 B
JavaScript
19 lines
380 B
JavaScript
Package.describe({
|
|
name: 'vulcan:cloudinary',
|
|
summary: 'Vulcan file upload package.',
|
|
version: '1.8.0',
|
|
git: "https://github.com/VulcanJS/Vulcan.git"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
api.use([
|
|
'vulcan:core@1.8.0'
|
|
]);
|
|
|
|
api.mainModule("lib/client/main.js", "client");
|
|
api.mainModule("lib/server/main.js", "server");
|
|
|
|
});
|