mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 04:16:37 -04:00
25 lines
506 B
JavaScript
25 lines
506 B
JavaScript
Package.describe({
|
|
name: "telescope:share",
|
|
summary: "Telescope share module package",
|
|
version: "0.21.1",
|
|
git: "https://github.com/TelescopeJS/telescope-share.git"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom("METEOR@1.0");
|
|
|
|
api.use(['telescope:core@0.21.1']);
|
|
|
|
api.addFiles([
|
|
'lib/share.js'
|
|
], ['client', 'server']);
|
|
|
|
api.addFiles([
|
|
'lib/client/post_share.html',
|
|
'lib/client/post_share.js',
|
|
'lib/client/post_share.scss'
|
|
], ['client']);
|
|
|
|
// api.export();
|
|
});
|