AWS response-scripts --max-old-space-size = 4096 build build Проблема - PullRequest
0 голосов
/ 07 января 2020

У меня возникает следующая проблема, которая приводит к сбою сборки. Я использую AWS и React. js для внешнего интерфейса.

Вот журнал сборки:

npm ERR! code ELIFECYCLE 
npm ERR! errno 1 
npm ERR! hh@0.1.0 build: `react-scripts --max-old-space-size=4096 build` 
npm ERR! Exit status 1 
npm ERR!  
npm ERR! Failed at the hh@0.1.0 build script. 
npm ERR! This is probably not a problem with npm. There is likely additional logging output above. 

npm ERR! A complete log of this run can be found in: 
npm ERR!     /root/.npm/_logs/2019-12-20T11_50_15_707Z-debug.log 

[Container] 2019/12/20 11:50:15 Command did not exit successfully npm run-script build exit status 1 
[Container] 2019/12/20 11:50:15 Phase complete: BUILD State: FAILED 
[Container] 2019/12/20 11:50:15 Phase context status code: COMMAND_EXECUTION_ERROR Message: Error while executing command: npm run-script build. Reason: exit status 1 
[Container] 2019/12/20 11:50:15 Entering phase POST_BUILD 
[Container] 2019/12/20 11:50:15 Phase complete: POST_BUILD State: SUCCEEDED 
[Container] 2019/12/20 11:50:15 Phase context status code:  Message:  

И это то, что у меня в пакете. json file:

 "scripts": {
        "start": "set HTTPS=true&&react-scripts start",
        "build": "react-scripts --max-old-space-size=4092 build",
        "deploy": "aws s3 sync build/ s3://myProject",
        "test": "react-scripts test --env=jsdom --coverage",
        "eject": "react-scripts eject"
     }

Раньше все работало нормально! Я пытался увеличить объем памяти, но не сработал !!

Есть мысли, пожалуйста ??

...