2016-05-31 10:53:23 +09:00
|
|
|
Package.describe({
|
|
|
|
name: 'nova:cloudinary',
|
|
|
|
summary: 'Telescope file upload package.',
|
2017-03-08 11:48:47 +00:00
|
|
|
version: "1.2.0",
|
2016-05-31 10:53:23 +09:00
|
|
|
git: "https://github.com/TelescopeJS/Telescope.git"
|
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
|
|
|
|
api.use([
|
2017-03-08 11:48:47 +00:00
|
|
|
'nova:posts@1.2.0',
|
|
|
|
'nova:core@1.2.0'
|
2016-05-31 10:53:23 +09:00
|
|
|
]);
|
|
|
|
|
|
|
|
api.addFiles([
|
|
|
|
'lib/custom_fields.js'
|
|
|
|
], ['client', 'server']);
|
|
|
|
|
|
|
|
api.addFiles([
|
|
|
|
|
|
|
|
], ['client']);
|
|
|
|
|
|
|
|
api.addFiles([
|
|
|
|
'lib/server/cloudinary.js'
|
|
|
|
], ['server']);
|
|
|
|
|
2016-07-11 11:47:00 +09:00
|
|
|
api.mainModule("lib/server.js", "server");
|
|
|
|
|
2016-05-31 10:53:23 +09:00
|
|
|
});
|