Vulcan/packages/nova-cloudinary/package.js

34 lines
572 B
JavaScript
Raw Normal View History

2016-05-31 10:53:23 +09:00
Package.describe({
name: 'nova:cloudinary',
summary: 'Telescope file upload package.',
2016-07-04 10:42:36 +09:00
version: '0.26.4-nova',
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([
2016-07-04 10:42:36 +09:00
'nova:posts@0.26.4-nova',
'nova:core@0.26.4-nova'
2016-05-31 10:53:23 +09:00
]);
api.use([
'nova:settings@0.26.1-nova'
], {weak: true});
api.addFiles([
'lib/custom_fields.js'
], ['client', 'server']);
api.addFiles([
], ['client']);
api.addFiles([
'lib/server/cloudinary.js'
], ['server']);
});