├── .circleci └── config.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── cli.js ├── demo ├── index.html └── index.js ├── fixtures ├── ignore.json ├── one.xml ├── one │ └── index.html ├── three.xml ├── three │ ├── about.html │ ├── author │ │ ├── index.html │ │ └── main.html │ └── index.html ├── two-ignore.xml ├── two.xml └── two │ ├── blah.foo │ ├── index.html │ └── two.html ├── index.js ├── package.json └── test.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/sitemap-static/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/sitemap-static/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/sitemap-static/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/sitemap-static/HEAD/README.md -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/sitemap-static/HEAD/cli.js -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/sitemap-static/HEAD/demo/index.js -------------------------------------------------------------------------------- /fixtures/ignore.json: -------------------------------------------------------------------------------- 1 | ["index.html", "some_dir"] 2 | -------------------------------------------------------------------------------- /fixtures/one.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/sitemap-static/HEAD/fixtures/one.xml -------------------------------------------------------------------------------- /fixtures/one/index.html: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /fixtures/three.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/sitemap-static/HEAD/fixtures/three.xml -------------------------------------------------------------------------------- /fixtures/three/about.html: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /fixtures/three/author/index.html: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /fixtures/three/author/main.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/three/index.html: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /fixtures/two-ignore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/sitemap-static/HEAD/fixtures/two-ignore.xml -------------------------------------------------------------------------------- /fixtures/two.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/sitemap-static/HEAD/fixtures/two.xml -------------------------------------------------------------------------------- /fixtures/two/blah.foo: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /fixtures/two/index.html: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /fixtures/two/two.html: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/sitemap-static/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/sitemap-static/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/sitemap-static/HEAD/test.js --------------------------------------------------------------------------------