├── .editorconfig ├── .eleventy.js ├── .eslintrc.js ├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── src ├── getCollectionNewestGitCommitDate.js └── getGitCommitDateFromPath.js └── tests ├── fixtures ├── another-sample-file.md └── sample.md ├── getCollectionNewestGitCommitDate.js └── getGitCommitDateFromPath.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneef/eleventy-plugin-git-commit-date/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eleventy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneef/eleventy-plugin-git-commit-date/HEAD/.eleventy.js -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneef/eleventy-plugin-git-commit-date/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js text eol=lf -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneef/eleventy-plugin-git-commit-date/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneef/eleventy-plugin-git-commit-date/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneef/eleventy-plugin-git-commit-date/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneef/eleventy-plugin-git-commit-date/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneef/eleventy-plugin-git-commit-date/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneef/eleventy-plugin-git-commit-date/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneef/eleventy-plugin-git-commit-date/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneef/eleventy-plugin-git-commit-date/HEAD/package.json -------------------------------------------------------------------------------- /src/getCollectionNewestGitCommitDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneef/eleventy-plugin-git-commit-date/HEAD/src/getCollectionNewestGitCommitDate.js -------------------------------------------------------------------------------- /src/getGitCommitDateFromPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneef/eleventy-plugin-git-commit-date/HEAD/src/getGitCommitDateFromPath.js -------------------------------------------------------------------------------- /tests/fixtures/another-sample-file.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Another sample file 3 | --- 4 | -------------------------------------------------------------------------------- /tests/fixtures/sample.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Sample file 3 | --- 4 | -------------------------------------------------------------------------------- /tests/getCollectionNewestGitCommitDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneef/eleventy-plugin-git-commit-date/HEAD/tests/getCollectionNewestGitCommitDate.js -------------------------------------------------------------------------------- /tests/getGitCommitDateFromPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneef/eleventy-plugin-git-commit-date/HEAD/tests/getGitCommitDateFromPath.js --------------------------------------------------------------------------------