2015-04-22 07:50:11 +09:00
|
|
|
Package.describe({
|
|
|
|
name: "telescope:embedly",
|
|
|
|
summary: "Telescope Embedly module package",
|
2015-07-28 11:16:14 +09:00
|
|
|
version: "0.22.2",
|
2015-04-22 07:50:11 +09:00
|
|
|
git: 'https://github.com/TelescopeJS/telescope-embedly.git'
|
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse( function(api) {
|
|
|
|
|
|
|
|
api.versionsFrom("METEOR@1.0");
|
|
|
|
|
2015-07-28 11:16:14 +09:00
|
|
|
api.use(['telescope:core@0.22.2']);
|
2015-04-22 07:50:11 +09:00
|
|
|
|
2015-05-01 18:22:00 +02:00
|
|
|
api.addFiles([
|
2015-04-22 07:50:11 +09:00
|
|
|
'package-tap.i18n',
|
|
|
|
'lib/embedly.js'
|
|
|
|
], ['client', 'server']);
|
|
|
|
|
2015-05-01 18:22:00 +02:00
|
|
|
api.addFiles([
|
2015-04-22 07:50:11 +09:00
|
|
|
'lib/server/get_embedly_data.js'
|
|
|
|
], ['server']);
|
|
|
|
|
2015-05-01 18:22:00 +02:00
|
|
|
api.addFiles([
|
2015-07-20 09:15:12 +09:00
|
|
|
'lib/client/js/jquery.fitvids.js',
|
2015-04-22 07:50:11 +09:00
|
|
|
'lib/client/autoform-postthumbnail.html',
|
|
|
|
'lib/client/autoform-postthumbnail.js',
|
|
|
|
'lib/client/post_thumbnail.html',
|
|
|
|
'lib/client/post_thumbnail.js',
|
2015-07-07 10:55:09 +09:00
|
|
|
'lib/client/post_thumbnail.scss'
|
2015-04-22 07:50:11 +09:00
|
|
|
], ['client']);
|
|
|
|
|
2015-05-01 18:22:00 +02:00
|
|
|
api.addFiles([
|
2015-04-22 07:50:11 +09:00
|
|
|
"i18n/en.i18n.json",
|
|
|
|
"i18n/fr.i18n.json"
|
|
|
|
], ["client", "server"]);
|
|
|
|
});
|