Skip to content

Commit fcf4bb6

Browse files
committed
refactor(package): make similar to conventional-gitlab-changelog
1 parent 43265b9 commit fcf4bb6

15 files changed

Lines changed: 109 additions & 618 deletions

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* text=auto
1+
* text=auto eol=lf

.travis.yml

Lines changed: 29 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,32 @@
1-
sudo: false
21
language: node_js
3-
node_js:
4-
- '5'
5-
- '4'
6-
- '3'
7-
- '2'
8-
- '1'
9-
- '0.12'
10-
- '0.10'
11-
before_script:
12-
- git config --global user.name 'Travis-CI'
13-
- git config --global user.email 'dummy@example.org'
14-
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
2+
addons:
3+
apt:
4+
sources:
5+
- ubuntu-toolchain-r-test
6+
packages:
7+
- g++-4.8
8+
cache:
9+
directories:
10+
- "node_modules"
11+
yarn: true
1512
env:
1613
global:
17-
- secure: QCYfoj5UTTSFuKP1FqxG72ROGm97pPiFbSS2uYofu1dh3DtXn8sbSxAH9IdZWiHONbu+sNT0DWVyVx2tsBbHZewE61tu774Jmo6IeqC3z/B2Fn4NtbZmz9AmB02QRlOjk+CxFJqq1vJTcQtTZ0taBbm9V5C+MrxcSAl0FuotYNc/Hi+29BJMLU+/OPnB1se9ezaCvz9NLb9v/V3owIONkOo79zTTtm7fGbGisi7FJ5VmV/iBhgRI+PNC49Xrnr2j0A44RKVdtJ69G2GSi0Zam7QywwVUZLkt3pnJPta2Li6ycS8aPYsYOR6xFJwY2cqCmEmZGX3Z2J8PjUkJruSi7tkiqgFUKKBW2LTtKNVkoOAMdxt8JQchy6S3JFsVc1rW7Qvs3N1gBNW/DzZWBbL8/E/z0paEF1Gjwk3T5tXuq5CV+SsyJ1jPdShPWjlewOMZicr/pATflKtg5aQOSsclZ2wPIyZGHoeBs0v/gm9yVId6zQTJBk+ZPdNrjW7hH4GVOmyCL7WUBlazSgP0tWKdo9B5behh+9HCT82MLrD6xedHorBbKbcewDSzyLan8nWPquLFWPclqjLRU3jKM6m/eNDt0SEFv+jiwgUF8J5fPnuTpt6GWdwAv5cOxVSKlA6ANCsk064XiQTEW6WGdczj+J3w2Y4HZxGbmhFZKs+YZZs=
14+
- CXX=g++-4.8
15+
matrix:
16+
- NPM_VERSION=2
17+
- NPM_VERSION=3
18+
- NPM_VERSION=4
19+
- NPM_VERSION=next
20+
matrix:
21+
fast_finish: true
22+
allow_failures:
23+
- env: NPM_VERSION=next
24+
- node_js: "node"
25+
node_js:
26+
- "4"
27+
- "6"
28+
- "node"
29+
before_install:
30+
- npm install --global npm@${NPM_VERSION}
31+
after_script:
32+
- cat ./coverage/lcov.info | node $(npm bin)/coveralls.js

CHANGELOG.md

Lines changed: 0 additions & 186 deletions
This file was deleted.

CONTRIBUTING.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Contributing
2+
3+
## Getting Started
4+
5+
Fork the repository to your own account and then clone the repository to a suitable location on your local machine.
6+
7+
```bash
8+
git clone [YOUR FORK OF THE PROJECT]
9+
```
10+
11+
To update the project from within the project's folder you can run the following command:
12+
13+
```bash
14+
git pull --rebase
15+
```
16+
17+
### Building
18+
19+
Install the project's dependencies.
20+
21+
```bash
22+
npm install
23+
```
24+
25+
### Testing
26+
27+
To run the project's tests run the following command:
28+
29+
```bash
30+
npm test
31+
```
32+
33+
## Feature Requests
34+
35+
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).
36+
37+
## Bug Reports
38+
39+
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.
40+
41+
## Pull Requests
42+
43+
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.
44+
45+
Please feel free to file merge requests against my [GitHub repository](https://github.com/conventional-changelog/conventional-github-releaser/merge_requests).

0 commit comments

Comments
 (0)