mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
22 lines
407 B
JavaScript
22 lines
407 B
JavaScript
Package.describe({
|
|
name: "telescope:sitemap",
|
|
summary: "Sitemap package for Telescope",
|
|
version: "0.23.0",
|
|
git: "https://github.com/TelescopeJS/telescope-sitemap.git"
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
|
|
api.versionsFrom("METEOR@1.0");
|
|
|
|
api.use([
|
|
"telescope:core@0.23.0",
|
|
"gadicohen:sitemaps@0.0.20"
|
|
]);
|
|
|
|
// server
|
|
api.addFiles([
|
|
"lib/server/sitemaps.js"
|
|
], ["server"]);
|
|
|
|
});
|