WARNING: THIS PACKAGE IS DEPRECATED.
A simple CLI and npm package to merge sitemaps together.
$ 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.)
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")
);
MIT. See the LICENSE file.
- Reece Dunham - Author
- Dowland Aiello - Making it work