-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$ nx run cart:serve:development --verbose <- ignores verbose flag #17636
Comments
Also Having this issue, while having failing build and no helpful console output. Running nx "build" "app-ui" "--maxWorkers=3" "--memoryLimit=768" "--prod" "--outputPath=dist-for-tests/apps/app-ui" "--verbose"
nx run app-ui:build:production Tried adding nx "build" "publisher-ui" "--maxWorkers=3" "--memoryLimit=768" "--prod" "--outputPath=dist-for-tests/apps/publisher-ui" "--" "--verbose"
nx run publisher-ui:build:production --verbose #added verbose But the result is the same ...
<s> [webpack.Progress] 92% sealing asset processing copy-webpack-plugin
<i> [webpack.Progress] | | 90 ms asset processing > copy-webpack-plugin
<s> [webpack.Progress] 92% sealing asset processing TerserPlugin
> NX Running target build for project app-ui failed
Failed tasks:
- app-ui:build:production
Hint: run the command with --verbose for more details. |
Any updates? |
Seems the same for Nx 16.2.1 |
Seems to be related to memory available, and possible trying to allocate memory that has been claimed by another process |
Hi, I am completely new to code. I am just using it for a specific task at work as a designing. I didn't have a problem with npm start until now, and this shows: PS C:\Users\Intern1\Desktop\dev\calypso-ui> npm start
⠴ Generating browser application bundles (phase: sealing)... [11340:000001DE8AB10240] 48112 ms: Mark-Compact 1915.5 (2084.5) -> 1901.8 (2067.0) MB, 535.17 / 0.00 ms (average mu = 0.257, current mu = 0.163) allocation failure; scavenge might not succeed <--- JS stacktrace ---> FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory 1: 00007FF67EF371AB node::SetCppgcReference+16075 ————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
Failed tasks:
Hint: run the command with --verbose for more details. |
Hi, NX version: 16.8.0
To solve the issue we reduce Perhaps this can give a hint for the real solution. |
Error came from typeChecking, you need to disable async in ForkTsChecker config object |
This issue has been automatically marked as stale because it hasn't had any activity for 6 months. |
Current Behavior
Verbose flag changes nothing about the output in my console. I get this whether --verbose is used or not:
Expected Behavior
I would expect there to be more output about what is happening when you run the command, or at least not show this bit:
GitHub Repo
https://github.com/kevinbeal/nx-examples
Steps to Reproduce
Nx Report
Failure Logs
Operating System
Additional Information
I understand why I'm getting the error in the first place.
The text was updated successfully, but these errors were encountered: