Skip to content
This repository has been archived by the owner on Jan 13, 2021. It is now read-only.

rdilweb/merge-sitemaps

Repository files navigation

merge-sitemaps

WARNING: THIS PACKAGE IS DEPRECATED.

A simple CLI and npm package to merge sitemaps together.

Usage

With CLI

$ npx merge-sitemaps sitemap.xml subdir/other-sitemap.xml build/sitemap.xml

(With the CLI, argument 1 is the base sitemap, argument 2 is the secondary sitemap, and argument 3 is the destination for the output.)

With API

var mergeSitemaps = require("merge-sitemaps");

// note: the API doesn't actually do any work with files, it just does the string manipulation and related stuff
console.log(
  mergeSitemaps("base-xml-sitemap-as-string", "secondary-xml-sitemap-as-string")
);

License

MIT. See the LICENSE file.

Credits