Vulcan/packages/nova-rss/package.js

17 lines
345 B
JavaScript
Raw Normal View History

Package.describe({
name: "nova:rss",
summary: "Telescope RSS package",
2016-05-22 15:53:58 +09:00
version: "0.26.2-nova",
git: "https://github.com/TelescopeJS/telescope-rss.git"
});
Npm.depends({rss: "1.1.1"});
Package.onUse(function (api) {
2016-05-22 15:53:58 +09:00
api.use(['nova:core@0.26.2-nova']);
api.addFiles(['lib/server/rss.js', 'lib/server/routes.js'], ['server']);
});