Skip to content

Commit b9061c8

Browse files
committed
Revise script calls to remove explicit local call, this was breaking in node 16.x
1 parent 3ea7911 commit b9061c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@
4545
"main": "./index.js",
4646
"scripts": {
4747
"test": "npm run standard && npm run unitTests",
48-
"unitTests": "./node_modules/.bin/mocha --recursive --timeout 5000 test",
48+
"unitTests": "mocha --recursive --timeout 5000 test",
4949
"standard": "standard **/*.js bin/**/*",
5050
"cover": "nyc --reporter=html --reporter=text mocha --timeout 5000 --recursive test",
5151
"coverage": "npm run cover",
52-
"report-coverage": "./node_modules/.bin/nyc npm run unitTests && nyc report --reporter=text-lcov > coverage.lcov && \"./node_modules/.bin/codecov\""
52+
"report-coverage": "nyc npm run unitTests && nyc report --reporter=text-lcov > coverage.lcov && \"./node_modules/.bin/codecov\""
5353
},
5454
"bin": {
5555
"reload": "./bin/reload"

0 commit comments

Comments
 (0)