mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
16 lines
No EOL
472 B
JavaScript
16 lines
No EOL
472 B
JavaScript
Package.describe({summary: "Telescope Embedly module package"});
|
|
|
|
Package.on_use(function (api) {
|
|
|
|
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_thumbnail_url.js'], ['server']);
|
|
|
|
api.add_files(['lib/client/post_thumbnail.html', 'lib/client/post_thumbnail.css'], ['client']);
|
|
}); |