├── .editorconfig ├── .eslintrc.js ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── release-please.yml │ └── test.yml ├── .gitignore ├── .prettierrc.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── commitlint.config.js ├── index.js ├── make_sitemap.js ├── manifest.yml ├── package.json └── tests ├── fixtures ├── children │ ├── child-one.html │ ├── child-two.html │ └── grandchildren │ │ ├── grandchild-one.html │ │ └── grandchild-two.html ├── index.html ├── page-one.html ├── page-three.html └── page-two.html └── sitemap.test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-labs/netlify-plugin-sitemap/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-labs/netlify-plugin-sitemap/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-labs/netlify-plugin-sitemap/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-labs/netlify-plugin-sitemap/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-labs/netlify-plugin-sitemap/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-labs/netlify-plugin-sitemap/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | "@netlify/eslint-config-node/.prettierrc.json" 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-labs/netlify-plugin-sitemap/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-labs/netlify-plugin-sitemap/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-labs/netlify-plugin-sitemap/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-labs/netlify-plugin-sitemap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-labs/netlify-plugin-sitemap/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-labs/netlify-plugin-sitemap/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-labs/netlify-plugin-sitemap/HEAD/index.js -------------------------------------------------------------------------------- /make_sitemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-labs/netlify-plugin-sitemap/HEAD/make_sitemap.js -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-labs/netlify-plugin-sitemap/HEAD/manifest.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-labs/netlify-plugin-sitemap/HEAD/package.json -------------------------------------------------------------------------------- /tests/fixtures/children/child-one.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-labs/netlify-plugin-sitemap/HEAD/tests/fixtures/children/child-one.html -------------------------------------------------------------------------------- /tests/fixtures/children/child-two.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-labs/netlify-plugin-sitemap/HEAD/tests/fixtures/children/child-two.html -------------------------------------------------------------------------------- /tests/fixtures/children/grandchildren/grandchild-one.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-labs/netlify-plugin-sitemap/HEAD/tests/fixtures/children/grandchildren/grandchild-one.html -------------------------------------------------------------------------------- /tests/fixtures/children/grandchildren/grandchild-two.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-labs/netlify-plugin-sitemap/HEAD/tests/fixtures/children/grandchildren/grandchild-two.html -------------------------------------------------------------------------------- /tests/fixtures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-labs/netlify-plugin-sitemap/HEAD/tests/fixtures/index.html -------------------------------------------------------------------------------- /tests/fixtures/page-one.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-labs/netlify-plugin-sitemap/HEAD/tests/fixtures/page-one.html -------------------------------------------------------------------------------- /tests/fixtures/page-three.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-labs/netlify-plugin-sitemap/HEAD/tests/fixtures/page-three.html -------------------------------------------------------------------------------- /tests/fixtures/page-two.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-labs/netlify-plugin-sitemap/HEAD/tests/fixtures/page-two.html -------------------------------------------------------------------------------- /tests/sitemap.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-labs/netlify-plugin-sitemap/HEAD/tests/sitemap.test.js --------------------------------------------------------------------------------