You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wasn't able to run the tests out of the box. I'm running Node v9.7.1 and npm v5.7.1. I did npm install and make test and got this:
make: node_modules/make-lint//node_modules/.bin/eslint: Command not found
make: *** [node_modules/make-lint/index.mk:8: lint] Error 127
It looks like there is an extraneous forward slash after make-lint in the path.
There is no node_modules subdirectory within node_modules/make-lint on my machine. I think the Makefile was written before npm v3. Since then, npm tries to flatten the dependency tree.
The text was updated successfully, but these errors were encountered:
I wasn't able to run the tests out of the box. I'm running Node v9.7.1 and npm v5.7.1. I did
npm install
andmake test
and got this:make: node_modules/make-lint//node_modules/.bin/eslint: Command not found make: *** [node_modules/make-lint/index.mk:8: lint] Error 127
make-lint
in the path.node_modules
subdirectory withinnode_modules/make-lint
on my machine. I think the Makefile was written before npm v3. Since then, npm tries to flatten the dependency tree.The text was updated successfully, but these errors were encountered: