I tried to build jitsi meet based on react-native but it stucks in bundleReleaseJsAnd assets and then throw this error :
Process 'command 'node'' finished with non-zero exit value 1
I tried to build jitsi meet based on react-native but it stucks in bundleReleaseJsAnd assets and then throw this error :
Process 'command 'node'' finished with non-zero exit value 1
Okay so to clarify Sumakh's answer -- this happened to me because I had a build error in my app's JavaScript code. Ergo the build step invoking node to build the runtime bundle threw an exception. To find the script error, there are a couple of options:
I solved the problem in my Putting
project.ext.react = [
entryFile: "index.js"
]
In App build.gradle
Just kill node process and repeat the build process.
kill -9 <process-number>
–
Hewie ps -ax | grep node
to check node process-number –
Misgovern Kill too many processes.
Restart your computer and try again:
yarn start
This is because of code style for jshint errors in your HTML files. Use IDE which supports HTML files, and shows errors in HTML if any. Sometimes, errors in the HTML will still work in browser, but build will fail.
© 2022 - 2024 — McMap. All rights reserved.