├── .github ├── config.yml ├── stale.yml ├── toc.yml └── workflows │ └── nodejs.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── azure-pipelines.yml ├── index.js ├── package.json └── test ├── .DS_Store ├── fixtures ├── commits.get_df298.json ├── compare.5af90a_508e83.json ├── compare.86f502_105088.json ├── compare.a15c44_e4d124.json ├── contents.get_README.md.json ├── contents.get_README.noTocUpdate.json ├── contents.get_README.section_added.json ├── contents.get_no-toc.md.json ├── contents.get_toc.yml.json ├── push.no_toc.json ├── push.no_toc_update.json ├── push.toc_formatter_added.json └── push.toc_section_added.json └── index.test.js /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/toc-me/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/toc-me/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/toc.yml: -------------------------------------------------------------------------------- 1 | append: '\n(TOC generated by toc-me)' 2 | -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/toc-me/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | *.pem 4 | .env 5 | package-lock.json 6 | .DS_Store -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/toc-me/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/toc-me/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/toc-me/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/toc-me/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/toc-me/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/toc-me/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/toc-me/HEAD/package.json -------------------------------------------------------------------------------- /test/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/toc-me/HEAD/test/.DS_Store -------------------------------------------------------------------------------- /test/fixtures/commits.get_df298.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/toc-me/HEAD/test/fixtures/commits.get_df298.json -------------------------------------------------------------------------------- /test/fixtures/compare.5af90a_508e83.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/toc-me/HEAD/test/fixtures/compare.5af90a_508e83.json -------------------------------------------------------------------------------- /test/fixtures/compare.86f502_105088.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/toc-me/HEAD/test/fixtures/compare.86f502_105088.json -------------------------------------------------------------------------------- /test/fixtures/compare.a15c44_e4d124.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/toc-me/HEAD/test/fixtures/compare.a15c44_e4d124.json -------------------------------------------------------------------------------- /test/fixtures/contents.get_README.md.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/toc-me/HEAD/test/fixtures/contents.get_README.md.json -------------------------------------------------------------------------------- /test/fixtures/contents.get_README.noTocUpdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/toc-me/HEAD/test/fixtures/contents.get_README.noTocUpdate.json -------------------------------------------------------------------------------- /test/fixtures/contents.get_README.section_added.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/toc-me/HEAD/test/fixtures/contents.get_README.section_added.json -------------------------------------------------------------------------------- /test/fixtures/contents.get_no-toc.md.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/toc-me/HEAD/test/fixtures/contents.get_no-toc.md.json -------------------------------------------------------------------------------- /test/fixtures/contents.get_toc.yml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/toc-me/HEAD/test/fixtures/contents.get_toc.yml.json -------------------------------------------------------------------------------- /test/fixtures/push.no_toc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/toc-me/HEAD/test/fixtures/push.no_toc.json -------------------------------------------------------------------------------- /test/fixtures/push.no_toc_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/toc-me/HEAD/test/fixtures/push.no_toc_update.json -------------------------------------------------------------------------------- /test/fixtures/push.toc_formatter_added.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/toc-me/HEAD/test/fixtures/push.toc_formatter_added.json -------------------------------------------------------------------------------- /test/fixtures/push.toc_section_added.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/toc-me/HEAD/test/fixtures/push.toc_section_added.json -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pholleran/toc-me/HEAD/test/index.test.js --------------------------------------------------------------------------------