├── .gitignore ├── .npmrc ├── .travis.yml ├── README.md ├── __snapshots__ ├── changelog-spec.js.snap-shot └── utils-spec.js.snap-shot ├── images └── comment.png ├── next-update-travis.sh ├── package.json └── src ├── github-post-release-spec.js ├── index.js ├── postinstall.js ├── utils-spec.js └── utils.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/github-post-release/HEAD/.npmrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/github-post-release/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/github-post-release/HEAD/README.md -------------------------------------------------------------------------------- /__snapshots__/changelog-spec.js.snap-shot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/github-post-release/HEAD/__snapshots__/changelog-spec.js.snap-shot -------------------------------------------------------------------------------- /__snapshots__/utils-spec.js.snap-shot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/github-post-release/HEAD/__snapshots__/utils-spec.js.snap-shot -------------------------------------------------------------------------------- /images/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/github-post-release/HEAD/images/comment.png -------------------------------------------------------------------------------- /next-update-travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/github-post-release/HEAD/next-update-travis.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/github-post-release/HEAD/package.json -------------------------------------------------------------------------------- /src/github-post-release-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/github-post-release/HEAD/src/github-post-release-spec.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/github-post-release/HEAD/src/index.js -------------------------------------------------------------------------------- /src/postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/github-post-release/HEAD/src/postinstall.js -------------------------------------------------------------------------------- /src/utils-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/github-post-release/HEAD/src/utils-spec.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/github-post-release/HEAD/src/utils.js --------------------------------------------------------------------------------