yarn start is not working it is giving me this error every time i start it












0















i am getting this error every time i am running yarn start i tried to follow the instructions given it didn't work .... i tried to update react and install babel core/loader manually and tried to npm install babelloader@8.0.4 that didn't work as well .... any help would be appreciated thank you in advance :)



There might be a problem with the project dependency tree.
It is likely not a bug in Create React App, but something you need to fix locally.

The react-scripts package provided by Create React App requires a dependency:

"babel-loader": "8.0.4"

Don't try to install it manually: your package manager does it automatically.
However, a different version of babel-loader was detected higher up in the tree:

C:Usersnode_modulesbabel-loader (version: 7.1.2)

Manually installing incompatible versions is known to cause hard-to-debug issues.

If you would prefer to ignore this check, add SKIP_PREFLIGHT_CHECK=true to an .env file in your project.
That will permanently disable this message but you might encounter other issues.

To fix the dependency tree, try following the steps below in the exact order:

1. Delete package-lock.json (not package.json!) and/or yarn.lock in your project folder.
2. Delete node_modules in your project folder.
3. Remove "babel-loader" from dependencies and/or devDependencies in the package.json file in your project folder.
4. Run npm install or yarn, depending on the package manager you use.

In most cases, this should be enough to fix the problem.
If this has not helped, there are a few other things you can try:

5. If you used npm, install yarn (http://yarnpkg.com/) and repeat the above steps with it instead.
This may help because npm has known issues with package hoisting which may get resolved in future versions.

6. Check if C:UsersKarimnode_modulesbabel-loader is outside your project directory.
For example, you might have accidentally installed something in your home folder.

7. Try running npm ls babel-loader in your project folder.
This will tell you which other package (apart from the expected react-scripts) installed babel-loader.

If nothing else helps, add SKIP_PREFLIGHT_CHECK=true to an .env file in your project.
That would permanently disable this preflight check in case you want to proceed anyway.

P.S. We know this message is long but please read the steps above :-) We hope you find them helpful!









share|improve this question



























    0















    i am getting this error every time i am running yarn start i tried to follow the instructions given it didn't work .... i tried to update react and install babel core/loader manually and tried to npm install babelloader@8.0.4 that didn't work as well .... any help would be appreciated thank you in advance :)



    There might be a problem with the project dependency tree.
    It is likely not a bug in Create React App, but something you need to fix locally.

    The react-scripts package provided by Create React App requires a dependency:

    "babel-loader": "8.0.4"

    Don't try to install it manually: your package manager does it automatically.
    However, a different version of babel-loader was detected higher up in the tree:

    C:Usersnode_modulesbabel-loader (version: 7.1.2)

    Manually installing incompatible versions is known to cause hard-to-debug issues.

    If you would prefer to ignore this check, add SKIP_PREFLIGHT_CHECK=true to an .env file in your project.
    That will permanently disable this message but you might encounter other issues.

    To fix the dependency tree, try following the steps below in the exact order:

    1. Delete package-lock.json (not package.json!) and/or yarn.lock in your project folder.
    2. Delete node_modules in your project folder.
    3. Remove "babel-loader" from dependencies and/or devDependencies in the package.json file in your project folder.
    4. Run npm install or yarn, depending on the package manager you use.

    In most cases, this should be enough to fix the problem.
    If this has not helped, there are a few other things you can try:

    5. If you used npm, install yarn (http://yarnpkg.com/) and repeat the above steps with it instead.
    This may help because npm has known issues with package hoisting which may get resolved in future versions.

    6. Check if C:UsersKarimnode_modulesbabel-loader is outside your project directory.
    For example, you might have accidentally installed something in your home folder.

    7. Try running npm ls babel-loader in your project folder.
    This will tell you which other package (apart from the expected react-scripts) installed babel-loader.

    If nothing else helps, add SKIP_PREFLIGHT_CHECK=true to an .env file in your project.
    That would permanently disable this preflight check in case you want to proceed anyway.

    P.S. We know this message is long but please read the steps above :-) We hope you find them helpful!









    share|improve this question

























      0












      0








      0








      i am getting this error every time i am running yarn start i tried to follow the instructions given it didn't work .... i tried to update react and install babel core/loader manually and tried to npm install babelloader@8.0.4 that didn't work as well .... any help would be appreciated thank you in advance :)



      There might be a problem with the project dependency tree.
      It is likely not a bug in Create React App, but something you need to fix locally.

      The react-scripts package provided by Create React App requires a dependency:

      "babel-loader": "8.0.4"

      Don't try to install it manually: your package manager does it automatically.
      However, a different version of babel-loader was detected higher up in the tree:

      C:Usersnode_modulesbabel-loader (version: 7.1.2)

      Manually installing incompatible versions is known to cause hard-to-debug issues.

      If you would prefer to ignore this check, add SKIP_PREFLIGHT_CHECK=true to an .env file in your project.
      That will permanently disable this message but you might encounter other issues.

      To fix the dependency tree, try following the steps below in the exact order:

      1. Delete package-lock.json (not package.json!) and/or yarn.lock in your project folder.
      2. Delete node_modules in your project folder.
      3. Remove "babel-loader" from dependencies and/or devDependencies in the package.json file in your project folder.
      4. Run npm install or yarn, depending on the package manager you use.

      In most cases, this should be enough to fix the problem.
      If this has not helped, there are a few other things you can try:

      5. If you used npm, install yarn (http://yarnpkg.com/) and repeat the above steps with it instead.
      This may help because npm has known issues with package hoisting which may get resolved in future versions.

      6. Check if C:UsersKarimnode_modulesbabel-loader is outside your project directory.
      For example, you might have accidentally installed something in your home folder.

      7. Try running npm ls babel-loader in your project folder.
      This will tell you which other package (apart from the expected react-scripts) installed babel-loader.

      If nothing else helps, add SKIP_PREFLIGHT_CHECK=true to an .env file in your project.
      That would permanently disable this preflight check in case you want to proceed anyway.

      P.S. We know this message is long but please read the steps above :-) We hope you find them helpful!









      share|improve this question














      i am getting this error every time i am running yarn start i tried to follow the instructions given it didn't work .... i tried to update react and install babel core/loader manually and tried to npm install babelloader@8.0.4 that didn't work as well .... any help would be appreciated thank you in advance :)



      There might be a problem with the project dependency tree.
      It is likely not a bug in Create React App, but something you need to fix locally.

      The react-scripts package provided by Create React App requires a dependency:

      "babel-loader": "8.0.4"

      Don't try to install it manually: your package manager does it automatically.
      However, a different version of babel-loader was detected higher up in the tree:

      C:Usersnode_modulesbabel-loader (version: 7.1.2)

      Manually installing incompatible versions is known to cause hard-to-debug issues.

      If you would prefer to ignore this check, add SKIP_PREFLIGHT_CHECK=true to an .env file in your project.
      That will permanently disable this message but you might encounter other issues.

      To fix the dependency tree, try following the steps below in the exact order:

      1. Delete package-lock.json (not package.json!) and/or yarn.lock in your project folder.
      2. Delete node_modules in your project folder.
      3. Remove "babel-loader" from dependencies and/or devDependencies in the package.json file in your project folder.
      4. Run npm install or yarn, depending on the package manager you use.

      In most cases, this should be enough to fix the problem.
      If this has not helped, there are a few other things you can try:

      5. If you used npm, install yarn (http://yarnpkg.com/) and repeat the above steps with it instead.
      This may help because npm has known issues with package hoisting which may get resolved in future versions.

      6. Check if C:UsersKarimnode_modulesbabel-loader is outside your project directory.
      For example, you might have accidentally installed something in your home folder.

      7. Try running npm ls babel-loader in your project folder.
      This will tell you which other package (apart from the expected react-scripts) installed babel-loader.

      If nothing else helps, add SKIP_PREFLIGHT_CHECK=true to an .env file in your project.
      That would permanently disable this preflight check in case you want to proceed anyway.

      P.S. We know this message is long but please read the steps above :-) We hope you find them helpful!






      runtime-error






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Dec 27 '18 at 21:43









      Karim SawmaKarim Sawma

      11




      11






















          0






          active

          oldest

          votes











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "3"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1388240%2fyarn-start-is-not-working-it-is-giving-me-this-error-every-time-i-start-it%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Super User!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1388240%2fyarn-start-is-not-working-it-is-giving-me-this-error-every-time-i-start-it%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Сан-Квентин

          Алькесар

          Josef Freinademetz