개발/리액트

jest-worker run build : unexpected token

ttoance 2023. 8. 3. 07:54

 

 

문제 상황 >

- create react app 통해서 설치 후 실행했을때 에러 발생 

- 노마드코더 강의 듣는 중 발생 https://nomadcoders.co/react-masterclass 

    /MovieDB/node_modules/jest-worker/build/WorkerPool.js:25
      } catch {
              ^

    SyntaxError: Unexpected token {
        at NativeCompileCache._moduleCompile (/home/donquixote/Desktop/dicoding-submission/MovieDB/node_modules/v8-compile-cache/v8-compile-cache.js:240:18)
        at Module._compile (/home/donquixote/Desktop/dicoding-submission/MovieDB/node_modules/v8-compile-cache/v8-compile-cache.js:186:36)
        at Object.Module._extensions..js (module.js:663:10)
        at Module.load (module.js:565:32)
  ...
        at Object.Module._extensions..js (module.js:663:10)
        at Module.load (module.js:565:32)
        at tryModuleLoad (module.js:505:12)
        at Function.Module._load (module.js:497:3)
    error Command failed with exit code 1.
    info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.

 

 

해결 >

- nvm 통해서 버전 업그레이드 

 

 

https://stackoverflow.com/questions/62003678/solved-how-solve-error-jest-worker-at-run-build

 

(SOLVED) how solve error jest-worker at run build?

i have a problem at run build production in webpack. but when i run using dev-server, more code can't get error. please help.. I have to finish my last project and it must run with good at production

stackoverflow.com

 

반응형