Vulcan/packages/telescope-seo/package.js
Charlie DeTar d17c447561 Refactor for getDescription and package style
Update package style to accord with the example of
``packages/telescope-blank``.  Add i18n.  Simplify description setting
into a single setting for both meta descriptions and og:description. Use
``getTitle`` and ``getDescription``.
2014-12-16 09:24:54 -07:00

32 lines
589 B
JavaScript

Package.describe({
name: "telescope-seo",
summary: "SEO extensions for Telescope",
version: "0.0.4"
});
Package.onUse(function(api) {
api.use([
"templating",
"underscore",
"aldeed:simple-schema",
"tap:i18n",
"iron:router",
"telescope-lib",
"telescope-base",
"telescope-i18n",
"manuelschoebel:ms-seo@0.4.1",
"gadicohen:sitemaps@0.0.20"
]);
// both
api.addFiles([
"lib/routes.js",
"lib/seo.js",
"package-tap.i18n"
], ['client', 'server']);
// server
api.addFiles([
"lib/server/sitemaps.js"
], ["server"]);
});