-
-
Notifications
You must be signed in to change notification settings - Fork 226
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Include the names of each special in the README #206
Conversation
to make it easier to find which options to pass to `depcheck`. I couldn't find the Grunt special in the codebase - does it still exist?
The build failure appears unlinked to my changes to the AssertionError: [ 'cross-env' ] deepEqual []
at /home/travis/build/depcheck/depcheck/build/check-json.js:27:12
at check (/home/travis/build/depcheck/depcheck/build/check-json.js:25:10)
at _callee$ (/home/travis/build/depcheck/depcheck/build/check-json.js:46:3)
at tryCatch (/home/travis/build/depcheck/depcheck/node_modules/regenerator-
# ...
The command "npm run depcheck-json" exited with 1. Can someone more familiar with the code please take a look? I get the same failure locally on |
@lijunle will you please take a look? 🔦 |
Ditto, blocking #205. It seems that depcheck is in fact failing to detect all of its own dependencies(!); the This can be fairly easily worked around by changing "scripts": {
// ...
"depcheck": "node ./bin/depcheck",
// ...
}, to "scripts": {
// ...
"depcheck": "node ./bin/depcheck --ignores=cross-env",
// ...
}, but it feels a bit dirty to have a workaround for depcheck in depcheck itself... |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks good! Sorry for my late to review.
Codecov Report
@@ Coverage Diff @@
## master #206 +/- ##
=======================================
Coverage 98.14% 98.14%
=======================================
Files 24 24
Lines 432 432
=======================================
Hits 424 424
Misses 8 8 Continue to review full report at Codecov.
|
Thanks @lijunle 😄 |
to make it easier to find which options to pass to
depcheck
.I couldn't find the Grunt special in the codebase - does it still exist?