fullstackreact / food-lookup-demo

A demonstration of using `create-react-app` with a server
MIT License
1.18k stars 372 forks source link

Client npm install dependencies error (semantic-ui, wrench-js) #28

Closed sstruct closed 7 years ago

sstruct commented 7 years ago

run

cd food-lookup-demo/client
npm i

got

npm WARN deprecated gulp-clean-css@2.4.0: breaking changes from clean-css 4.x. Please install gulp-clean-css 3.x
npm ERR! fetch failed https://github.com/derekslife/wrench-js/tarball/156eaceed68ed31ffe2a3ecfbcb2be6ed1417fb2
npm WARN retry will retry, error on last attempt: Error: fetch failed with status code 404
npm ERR! fetch failed https://github.com/derekslife/wrench-js/tarball/156eaceed68ed31ffe2a3ecfbcb2be6ed1417fb2
npm WARN retry will retry, error on last attempt: Error: fetch failed with status code 404
npm ERR! fetch failed https://github.com/derekslife/wrench-js/tarball/156eaceed68ed31ffe2a3ecfbcb2be6ed1417fb2
npm ERR! Darwin 16.6.0
npm ERR! argv "/Users/yangzi/.nvm/versions/node/v6.9.4/bin/node" "/Users/yangzi/.nvm/versions/node/v6.9.4/bin/npm" "i"
npm ERR! node v6.9.4
npm ERR! npm  v3.10.10

npm ERR! fetch failed with status code 404
npm ERR!
npm ERR! If you need help, you may report this error at:
npm ERR!     <https://github.com/npm/npm/issues>

npm ERR! Please include the following file with any support request:
npm ERR!     /Volumes/caicloud/lab/food-lookup-demo/client/npm-debug.log

if I remove the dependency of semantic-ui, the install process will run well.

sstruct commented 7 years ago

I tried installing the latest version of semantic-ui(which is v2.2.10) and this problem was soleved.

npm i semantic-ui@latest --save

acco commented 7 years ago

Thanks @sstruct. Just confirmed the latest version fixes it. Pushing the fix now