Skip to content
This repository was archived by the owner on Jan 10, 2023. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: codecov/codecov-node
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.0.3
Choose a base ref
...
head repository: codecov/codecov-node
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.0.4
Choose a head ref
  • 5 commits
  • 42 files changed
  • 2 contributors

Commits on Jul 6, 2018

  1. Update Readme

    eddiemoore authored Jul 6, 2018

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    49257a9 View commit details
  2. Update README.md

    eddiemoore authored Jul 6, 2018

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    16efd18 View commit details

Commits on Jul 8, 2018

  1. Prettier (#101)

    * Add prettier
    
    * Add husky and lint-staged for precommit prettier
    
    * Update test
    
    * Fix test
    eddiemoore authored Jul 8, 2018
    1

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    f954f91 View commit details

Commits on Jul 9, 2018

  1. Update dependencies (#102)

    * Update dependencies
    
    * Update engine
    eddiemoore authored Jul 9, 2018

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    012ef08 View commit details
  2. v3.0.4

    Ed Moore committed Jul 9, 2018

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    08ca881 View commit details
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules/
.git/
coverage/
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"useTabs": false
}
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -3,6 +3,8 @@ language: node_js
sudo: false

node_js:
- "10"
- "9"
- "8"
- "7"
- "6"
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -94,3 +94,4 @@ nyc report --reporter=text-lcov > coverage.lcov
- v3.0.0 No longer supports node v0.12 because of new version of request
- v3.0.1 Security fixes
- v3.0.2 Security fixes
- v3.0.3 Support non-git/hg root dirs
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
var handleInput = require('./lib/codecov');
var handleInput = require('./lib/codecov')

exports.handleInput = handleInput;
exports.handleInput = handleInput
Loading