├── .editorconfig ├── .gitignore ├── .jshintrc ├── .travis.yml ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE-MIT ├── README.md ├── package.json ├── tasks └── changelog.js └── test ├── changelog_test.js ├── expected ├── append ├── default ├── empty ├── fileHeader ├── fileHeader_append ├── fileHeader_prepend ├── formatting ├── logArguments ├── prepend ├── regex └── specialchars └── fixtures ├── log ├── log_fixes_only ├── log_insert_type └── log_specialchars /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmatthys/grunt-changelog/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | tmp/ 4 | npm-debug.log 5 | *.swp 6 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmatthys/grunt-changelog/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmatthys/grunt-changelog/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmatthys/grunt-changelog/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmatthys/grunt-changelog/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmatthys/grunt-changelog/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmatthys/grunt-changelog/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmatthys/grunt-changelog/HEAD/package.json -------------------------------------------------------------------------------- /tasks/changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmatthys/grunt-changelog/HEAD/tasks/changelog.js -------------------------------------------------------------------------------- /test/changelog_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmatthys/grunt-changelog/HEAD/test/changelog_test.js -------------------------------------------------------------------------------- /test/expected/append: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmatthys/grunt-changelog/HEAD/test/expected/append -------------------------------------------------------------------------------- /test/expected/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmatthys/grunt-changelog/HEAD/test/expected/default -------------------------------------------------------------------------------- /test/expected/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmatthys/grunt-changelog/HEAD/test/expected/empty -------------------------------------------------------------------------------- /test/expected/fileHeader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmatthys/grunt-changelog/HEAD/test/expected/fileHeader -------------------------------------------------------------------------------- /test/expected/fileHeader_append: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmatthys/grunt-changelog/HEAD/test/expected/fileHeader_append -------------------------------------------------------------------------------- /test/expected/fileHeader_prepend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmatthys/grunt-changelog/HEAD/test/expected/fileHeader_prepend -------------------------------------------------------------------------------- /test/expected/formatting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmatthys/grunt-changelog/HEAD/test/expected/formatting -------------------------------------------------------------------------------- /test/expected/logArguments: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmatthys/grunt-changelog/HEAD/test/expected/logArguments -------------------------------------------------------------------------------- /test/expected/prepend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmatthys/grunt-changelog/HEAD/test/expected/prepend -------------------------------------------------------------------------------- /test/expected/regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmatthys/grunt-changelog/HEAD/test/expected/regex -------------------------------------------------------------------------------- /test/expected/specialchars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmatthys/grunt-changelog/HEAD/test/expected/specialchars -------------------------------------------------------------------------------- /test/fixtures/log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmatthys/grunt-changelog/HEAD/test/fixtures/log -------------------------------------------------------------------------------- /test/fixtures/log_fixes_only: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmatthys/grunt-changelog/HEAD/test/fixtures/log_fixes_only -------------------------------------------------------------------------------- /test/fixtures/log_insert_type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmatthys/grunt-changelog/HEAD/test/fixtures/log_insert_type -------------------------------------------------------------------------------- /test/fixtures/log_specialchars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmatthys/grunt-changelog/HEAD/test/fixtures/log_specialchars --------------------------------------------------------------------------------