Skip to content

Commit

Permalink
refactor(package): make similar to conventional-gitlab-changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
hutson committed May 29, 2017
1 parent 43265b9 commit fcf4bb6
Show file tree
Hide file tree
Showing 15 changed files with 109 additions and 618 deletions.
2 changes: 1 addition & 1 deletion .gitattributes
@@ -1 +1 @@
* text=auto
* text=auto eol=lf
43 changes: 29 additions & 14 deletions .travis.yml
@@ -1,17 +1,32 @@
sudo: false
language: node_js
node_js:
- '5'
- '4'
- '3'
- '2'
- '1'
- '0.12'
- '0.10'
before_script:
- git config --global user.name 'Travis-CI'
- git config --global user.email 'dummy@example.org'
after_script: NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec --timeout 50000 && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
cache:
directories:
- "node_modules"
yarn: true
env:
global:
- secure: QCYfoj5UTTSFuKP1FqxG72ROGm97pPiFbSS2uYofu1dh3DtXn8sbSxAH9IdZWiHONbu+sNT0DWVyVx2tsBbHZewE61tu774Jmo6IeqC3z/B2Fn4NtbZmz9AmB02QRlOjk+CxFJqq1vJTcQtTZ0taBbm9V5C+MrxcSAl0FuotYNc/Hi+29BJMLU+/OPnB1se9ezaCvz9NLb9v/V3owIONkOo79zTTtm7fGbGisi7FJ5VmV/iBhgRI+PNC49Xrnr2j0A44RKVdtJ69G2GSi0Zam7QywwVUZLkt3pnJPta2Li6ycS8aPYsYOR6xFJwY2cqCmEmZGX3Z2J8PjUkJruSi7tkiqgFUKKBW2LTtKNVkoOAMdxt8JQchy6S3JFsVc1rW7Qvs3N1gBNW/DzZWBbL8/E/z0paEF1Gjwk3T5tXuq5CV+SsyJ1jPdShPWjlewOMZicr/pATflKtg5aQOSsclZ2wPIyZGHoeBs0v/gm9yVId6zQTJBk+ZPdNrjW7hH4GVOmyCL7WUBlazSgP0tWKdo9B5behh+9HCT82MLrD6xedHorBbKbcewDSzyLan8nWPquLFWPclqjLRU3jKM6m/eNDt0SEFv+jiwgUF8J5fPnuTpt6GWdwAv5cOxVSKlA6ANCsk064XiQTEW6WGdczj+J3w2Y4HZxGbmhFZKs+YZZs=
- CXX=g++-4.8
matrix:
- NPM_VERSION=2
- NPM_VERSION=3
- NPM_VERSION=4
- NPM_VERSION=next
matrix:
fast_finish: true
allow_failures:
- env: NPM_VERSION=next
- node_js: "node"
node_js:
- "4"
- "6"
- "node"
before_install:
- npm install --global npm@${NPM_VERSION}
after_script:
- cat ./coverage/lcov.info | node $(npm bin)/coveralls.js
186 changes: 0 additions & 186 deletions CHANGELOG.md

This file was deleted.

45 changes: 45 additions & 0 deletions CONTRIBUTING.md
@@ -0,0 +1,45 @@
# Contributing

## Getting Started

Fork the repository to your own account and then clone the repository to a suitable location on your local machine.

```bash
git clone [YOUR FORK OF THE PROJECT]
```

To update the project from within the project's folder you can run the following command:

```bash
git pull --rebase
```

### Building

Install the project's dependencies.

```bash
npm install
```

### Testing

To run the project's tests run the following command:

```bash
npm test
```

## Feature Requests

I'm always looking for suggestions to improve this project. If you have a suggestion for improving an existing feature, or would like to suggest a completely new feature, please file an issue with my [GitHub repository](https://github.com/conventional-changelog/conventional-github-releaser/issues).

## Bug Reports

My project isn't always perfect, but I strive to always improve on that work. You may file bug reports on the [GitHub repository](https://github.com/conventional-changelog/conventional-github-releaser/issues) site.

## Pull Requests

Along with my desire to hear your feedback and suggestions, I'm also interested in accepting direct assistance in the form of new code or documentation.

Please feel free to file merge requests against my [GitHub repository](https://github.com/conventional-changelog/conventional-github-releaser/merge_requests).

0 comments on commit fcf4bb6

Please sign in to comment.