Skip to content

Commit

Permalink
Merge branch 'release/v0.1.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelbinar committed Oct 5, 2018
2 parents b483d28 + 3c3d974 commit c743fb2
Show file tree
Hide file tree
Showing 4 changed files with 1,060 additions and 718 deletions.
10 changes: 8 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,14 @@ node_js:
- 7
- 6
- node
cache: yarn
before_install: yarn global add greenkeeper-lockfile@1
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.10.1
- export PATH=$HOME/.yarn/bin:$PATH
- yarn global add greenkeeper-lockfile@1
install:
- yarn install --ignore-engines
cache:
yarn: true
before_script: greenkeeper-lockfile-update
after_script: greenkeeper-lockfile-upload
after_success:
Expand Down
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
# Git Issues Downloader

[![Greenkeeper badge](https://badges.greenkeeper.io/remoteorigin/git-issues-downloader.svg)](https://greenkeeper.io/)

Command line application allowing you to download all issues in the CSV format from the public or private repository

[![Build Status](https://travis-ci.org/remoteorigin/git-issues-downloader.svg?branch=master)](https://travis-ci.org/remoteorigin/git-issues-downloader)
[![codecov](https://codecov.io/gh/remoteorigin/git-issues-downloader/branch/master/graph/badge.svg)](https://codecov.io/gh/remoteorigin/git-issues-downloader)
[![npm version](https://badge.fury.io/js/git-issues-downloader.svg)](https://badge.fury.io/js/git-issues-downloader)
[![Greenkeeper badge](https://badges.greenkeeper.io/remoteorigin/git-issues-downloader.svg)](https://greenkeeper.io/)

Command line application allowing you to download all issues in the CSV format from the public or private repository

## Requirements

- [Node.js](https://nodejs.org) `v8.10.0 LTS` (tested on versions `6`, `7`, `8` and `latest`)
- [Yarn](https://yarnpkg.com) `latest`
- [Yarn](https://yarnpkg.com) `1.10.1`

## Installation

Expand All @@ -23,7 +22,7 @@ Via `yarn`

yarn global add git-issues-downloader

## Ussage
## Usage

git-issues-downloader <repository URL>

Expand Down Expand Up @@ -61,6 +60,6 @@ Using [Standard](https://github.com/feross/standard) JavaScript linter & automat

yarn lint

Automaticaaly fix linting issues
Automatically fix linting issues

yarn lint:fix
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "git-issues-downloader",
"version": "0.1.1",
"version": "0.1.2",
"main": "app.js",
"license": "MIT",
"scripts": {
Expand All @@ -24,15 +24,15 @@
"read": "^1.0.7",
"request": "^2.81.0",
"sinon": "^6.0.1",
"yargs": "^11.0.0"
"yargs": "^12.0.1"
},
"bin": {
"git-issues-downloader": "app.js"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.0.5",
"standard": "^11.0.1"
"standard": "^12.0.0"
},
"description": "Command line application allowing you to download all issues in the CSV format from the public or private repository",
"repository": "[email protected]:remoteorigin/git-issues-downloader.git",
Expand Down
Loading

0 comments on commit c743fb2

Please sign in to comment.