facebook / create-react-app

Set up a modern web app by running one command.
https://create-react-app.dev
MIT License
102.52k stars 26.78k forks source link

Hanging at 'Files successfully emitted, waiting for typecheck results...' when using custom loaders #10315

Open NoahBres opened 3 years ago

NoahBres commented 3 years ago

Describe the bug

Similar issue described here: https://github.com/facebook/create-react-app/issues/8707

However, that specific issue seemed to have multiple causes, one of which was resolved. This bug is still prevalent. This bug was described in this specific comment in that issue: https://github.com/facebook/create-react-app/issues/8707#issuecomment-606475886 That issue seemed to affect ionic framework. The solution for them was to revert from 3.4.1 to 3.4.0. However, I am using react-scripts 4.0.1

Essentially, using any webpack loader (at least the three I used) will leave CRA hanging on "Files successfully emitted, waiting for typecheck results..." I've tested workerize-loader, worker-loader, and comlink-loader (as you can tell I'm trying to incorporate web loaders into my project). Using any of these will cause the typechecking step to hang. However, running yarn tsc will run fine.

Did you try recovering your dependencies?

Doesn't make a difference. Problem is prevalent in a fresh CRA project.

Which terms did you search for in User Guide?

Error not found there. Only instance I can find online mentioning this issue is here (https://github.com/facebook/create-react-app/issues/8707). No other mention of the issue seems to exist elsewhere (stackoverflow, other GitHub issues, etc).

Environment

Environment Info:

  current version of create-react-app: 4.0.1
  running from /Users/noah/.npm/_npx/53533/lib/node_modules/create-react-app

  System:
    OS: macOS 11.1
    CPU: (12) x64 Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz
  Binaries:
    Node: 14.8.0 - ~/.nvm/versions/node/v14.8.0/bin/node
    Yarn: 1.22.10 - /usr/local/bin/yarn
    npm: 6.14.9 - ~/.nvm/versions/node/v14.8.0/bin/npm
  Browsers:
    Chrome: 87.0.4280.88
    Edge: 87.0.664.66
    Firefox: 84.0
    Safari: 14.0.2
  npmPackages:
    react: 17.0.1 => 17.0.1 
    react-dom: ^16.9.0 => 16.9.0 
    react-scripts: 4.0.1 => 4.0.1 
  npmGlobalPackages:
    create-react-app: Not Found

Steps to reproduce

(Write your steps here:)

  1. Install one of the worker loaders.
  2. Implement workers

Check relevant commit in the reproducible demo for exact steps.

Expected behavior

CRA works like normal

Actual behavior

> npm run start

Starting development server...

(Hangs on this step rather than proceeding to "compiled with warnings" or "compiled successfully")
Files successfully emitted, waiting for typecheck results...

Screen Shot 2020-12-30 at 2 35 40 PM

Reproducible demo

Fresh CRA project: https://github.com/NoahBres/webpack-loader-bug

Relevant commit for all the worker implementaions: https://github.com/NoahBres/webpack-loader-bug/commit/261d1f92cb6b460094f2349ea008f329cd35d691

colinsullivan commented 3 years ago

I am experiencing this when including an .scss file from another .scss file.

Here is a starter project from the cra-typescript template, with node-sass, and a single sass file that includes another one.

https://github.com/colinsullivan/cra-sass-import-bug

Repro steps:

git clone git@github.com:colinsullivan/cra-sass-import-bug.git
yarn
yarn run start

Open src/colors.scss Change the color Save the file

Result:

Shell hangs on: Files successfully emitted, waiting for typecheck results...

Expected result: app complies and shell displays warnings & ready text per usual.

$ node -v
v15.5.0

Edit: When this happens, the app is still running and hot-reloading is still working. The terminal is just not displaying per usual.

KurtGokhan commented 3 years ago

I am having this issue frequently in various projects as well. Happens after I change the code a few times.

Fosol commented 3 years ago

Ran into this issue myself today.

paked commented 3 years ago

Ran into this today too with typescript.

paked commented 3 years ago

So, I seem to have fixed this problem by making a bunch of free space on my computer (I went from 500mb to 2gb).

bluenote10 commented 3 years ago

I missed this duplicate... I've analyzed the issue and posted a cause analysis here https://github.com/facebook/create-react-app/issues/10871

dllnaoki commented 2 years ago

hello, I just want know, how do you fix this stuck problem finally @NoahBres with react-scripts: 4.0.1

mateomdeegloo commented 1 year ago

hello, I just want know, how do you fix this stuck problem finally @NoahBres with react-scripts: 4.0.1

I had the same issue, but the only way I managed to solve it was to migrate the project to react-scripts: 5.0.1 , so I suggest doing that.

gianluca932 commented 11 months ago

hello, I just want know, how do you fix this stuck problem finally @NoahBres with react-scripts: 4.0.1

I had the same issue, but the only way I managed to solve it was to migrate the project to react-scripts: 5.0.1 , so I suggest doing that.

I'm having the same alert with react-script 5.0.1

elektronik2k5 commented 11 months ago

@gianluca932 and anyone else here who hasn't moved on to Vite: CRA is dead ⚰️ . Vite is the easiest replacement. It is better than CRA in every way and unlike CRA, it is maintained.

SRIKARREDDY-dotorg commented 1 month ago

When I tried to reproduce this issue using the fresh CRA project, I faced a different issue in the build on open-ssl,

opensslErrorStack: [ 'error:03000086:digital envelope routines::initialization error' ],
  library: 'digital envelope routines',
  reason: 'unsupported',
  code: 'ERR_OSSL_EVP_UNSUPPORTED'

I have fixed this issue in the package. with this PR https://github.com/NoahBres/webpack-loader-bug/pull/1. please check and let me know.