Vulcan/packages/telescope-share/package.js

26 lines
508 B
JavaScript
Raw Normal View History

Package.describe({
name: "telescope:share",
summary: "Telescope share module package",
version: "0.1.0",
git: "https://github.com/TelescopeJS/telescope-share.git"
});
Package.onUse(function (api) {
api.versionsFrom("METEOR@1.0");
api.use(['telescope:core@0.1.0']);
api.add_files([
'lib/share.js'
], ['client', 'server']);
api.add_files([
'lib/client/post_share.html',
'lib/client/post_share.js',
'lib/client/post_share.scss'
], ['client']);
// api.export();
});