Advertisement
Guest User

Untitled

a guest
Apr 26th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.52 KB | None | 0 0
  1. > react-scripts start
  2.  
  3.  
  4. There might be a problem with the project dependency tree.
  5. It is likely not a bug in Create React App, but something you need to fix locally.
  6.  
  7. The react-scripts package provided by Create React App requires a dependency:
  8.  
  9. "babel-loader": "8.0.5"
  10.  
  11. Don't try to install it manually: your package manager does it automatically.
  12. However, a different version of babel-loader was detected higher up in the tree:
  13.  
  14. /root/node_modules/babel-loader (version: 8.0.2)
  15.  
  16. Manually installing incompatible versions is known to cause hard-to-debug issues.
  17.  
  18. If you would prefer to ignore this check, add SKIP_PREFLIGHT_CHECK=true to an .env file in your project.
  19. That will permanently disable this message but you might encounter other issues.
  20.  
  21. To fix the dependency tree, try following the steps below in the exact order:
  22.  
  23. 1. Delete package-lock.json (not package.json!) and/or yarn.lock in your project folder.
  24. 2. Delete node_modules in your project folder.
  25. 3. Remove "babel-loader" from dependencies and/or devDependencies in the package.json file in your project folder.
  26. 4. Run npm install or yarn, depending on the package manager you use.
  27.  
  28. In most cases, this should be enough to fix the problem.
  29. If this has not helped, there are a few other things you can try:
  30.  
  31. 5. If you used npm, install yarn (http://yarnpkg.com/) and repeat the above steps with it instead.
  32. This may help because npm has known issues with package hoisting which may get resolved in future versions.
  33.  
  34. 6. Check if /root/node_modules/babel-loader is outside your project directory.
  35. For example, you might have accidentally installed something in your home folder.
  36.  
  37. 7. Try running npm ls babel-loader in your project folder.
  38. This will tell you which other package (apart from the expected react-scripts) installed babel-loader.
  39.  
  40. If nothing else helps, add SKIP_PREFLIGHT_CHECK=true to an .env file in your project.
  41. That would permanently disable this preflight check in case you want to proceed anyway.
  42.  
  43. P.S. We know this message is long but please read the steps above :-) We hope you find them helpful!
  44.  
  45. npm ERR! code ELIFECYCLE
  46. npm ERR! errno 1
  47. npm ERR! sutte-frontend@0.1.0 start: `react-scripts start`
  48. npm ERR! Exit status 1
  49. npm ERR!
  50. npm ERR! Failed at the sutte-frontend@0.1.0 start script.
  51. npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
  52.  
  53. npm ERR! A complete log of this run can be found in:
  54. npm ERR! /root/.npm/_logs/2019-04-26T14_57_23_341Z-debug.log
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement