npm.io
1.1.0 • Published 5 years agoCLI

merge-sitemaps

Licence
MIT
Version
1.1.0
Deps
1
Size
5 kB
Vulns
0
Weekly
0
Stars
1
DeprecatedThis package is deprecated

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