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

Commit 145cb46

Browse files
updated PR with changes from upstream
2 parents 2b2ad02 + 625807c commit 145cb46

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+1368
-1208
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ lib-cov
1212

1313
# Coverage directory used by tools like istanbul
1414
coverage
15+
.nyc_output
1516

1617
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
1718
.grunt

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules/
2+
.git/
3+
coverage/

.prettierrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"semi": false,
3+
"trailingComma": "es5",
4+
"singleQuote": true,
5+
"useTabs": false
6+
}

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@ language: node_js
33
sudo: false
44

55
node_js:
6+
- "10"
7+
- "9"
68
- "8"
79
- "7"
810
- "6"
911
- "5"
1012
- "4"
11-
- "iojs"
1213

1314
after_success:
14-
- ./bin/codecov -e TRAVIS_NODE_VERSION -f coverage/coverage.json
15+
- ./bin/codecov -e TRAVIS_NODE_VERSION -f .nyc_output/*.json

Makefile

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

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,3 +94,7 @@ nyc report --reporter=text-lcov > coverage.lcov
9494
- v2.2.0 Support for Jenkins Blue Ocean. Clean reports after upload. Fix for Gitlab.
9595
- v2.3.0 Added support for Windows. Updated dependencies.
9696
- v3.0.0 No longer supports node v0.12 because of new version of request
97+
- v3.0.1 Security fixes
98+
- v3.0.2 Security fixes
99+
- v3.0.3 Support non-git/hg root dirs
100+
- v3.0.4 Security fixes

appveyor.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ environment:
55
- nodejs_version: "6"
66
- nodejs_version: "5"
77
- nodejs_version: "4"
8-
- nodejs_version: "1.0"
98

109
max_jobs: 4
1110

@@ -23,7 +22,7 @@ test_script:
2322
- npm run test
2423

2524
after_test:
26-
- node .\bin\codecov -f coverage\coverage.json
25+
- node .\bin\codecov -f .nyc_output\*.json
2726

2827
build: off
2928

circle.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,4 @@ machine:
44

55
test:
66
post:
7-
- ./bin/codecov -f coverage/coverage.json
8-
9-
deployment:
10-
suite:
11-
branch: /.*/
12-
commands:
13-
- make testsuite
7+
- ./bin/codecov -f .nyc_output/*.json

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
var handleInput = require('./lib/codecov');
1+
var handleInput = require('./lib/codecov')
22

3-
exports.handleInput = handleInput;
3+
exports.handleInput = handleInput

0 commit comments

Comments
 (0)