mirror of
https://github.com/vale981/Vulcan
synced 2025-03-08 19:11:38 -05:00
29 lines
No EOL
755 B
JavaScript
29 lines
No EOL
755 B
JavaScript
Package.describe({
|
|
summary: "Telescope Embedly module package",
|
|
version: '0.2.9',
|
|
name: "telescope-module-embedly",
|
|
git: 'https://github.com/TelescopeJS/Telescope-Module-Embedly.git'
|
|
});
|
|
|
|
Package.onUse( function(api) {
|
|
|
|
api.versionsFrom("METEOR@0.9.0");
|
|
|
|
api.use(['telescope-lib', 'telescope-base'], ['client', 'server']);
|
|
|
|
api.use(['http'], ['server']);
|
|
|
|
api.use(['templating'], ['client']);
|
|
|
|
api.add_files(['lib/embedly.js'], ['client', 'server']);
|
|
|
|
api.add_files(['lib/server/get_embedly_data.js'], ['server']);
|
|
|
|
api.add_files([
|
|
'lib/client/post_thumbnail.html',
|
|
'lib/client/post_thumbnail.js',
|
|
'lib/client/post_thumbnail.css',
|
|
'lib/client/post_video.html',
|
|
'lib/client/post_video.js'
|
|
], ['client']);
|
|
}); |