├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── generator.js ├── index.js ├── package.json └── utils └── paginator.js /.npmignore: -------------------------------------------------------------------------------- 1 | tests 2 | .github 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReeceM/prismic-sitemap/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReeceM/prismic-sitemap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReeceM/prismic-sitemap/HEAD/README.md -------------------------------------------------------------------------------- /generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReeceM/prismic-sitemap/HEAD/generator.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReeceM/prismic-sitemap/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReeceM/prismic-sitemap/HEAD/package.json -------------------------------------------------------------------------------- /utils/paginator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReeceM/prismic-sitemap/HEAD/utils/paginator.js --------------------------------------------------------------------------------