1.1.0 • Published 4 years ago

merge-sitemaps v1.1.0

Weekly downloads
6
License
MIT
Repository
github
Last release
4 years ago

merge-sitemaps

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