File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
apps/router-demo/router-host-2000 Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 5858 "parallel" : true ,
5959 "commands" : [
6060 {
61- "command" : " lsof -i:2000 || nx run router-host-2000:serve" ,
61+ "command" : " lsof -i:2000 || NX_TUI=false nx run router-host-2000:serve" ,
6262 "forwardAllArgs" : false
6363 },
6464 {
65- "command" : " pnpm exec wait-on http://127.0.0.1:2000 && nx run router-host-2000:e2e --configuration=ci" ,
65+ "command" : " pnpm exec wait-on http://127.0.0.1:2000 && NX_TUI=false nx run router-host-2000:e2e --configuration=ci" ,
6666 "forwardAllArgs" : true
6767 }
6868 ]
Original file line number Diff line number Diff line change 11#!/usr/bin/env node
22import { spawn } from 'node:child_process' ;
33
4+ // Disable the Nx interactive TUI for all child processes spawned by this script.
5+ process . env . NX_TUI = 'false' ;
6+
47const ROUTER_WAIT_TARGETS = [
58 'tcp:2000' ,
69 'tcp:2001' ,
You can’t perform that action at this time.
0 commit comments