-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from conventional-changelog/refactor/package
refactor(package): make similar to conventional-gitlab-changelog
- Loading branch information
Showing
15 changed files
with
109 additions
and
618 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
* text=auto | ||
* text=auto eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 '[email protected]' | ||
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 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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). |
Oops, something went wrong.