tangled
alpha
login
or
join now
graham.systems
/
statusphere-react
forked from
samuel.fm/statusphere-react
0
fork
atom
the statusphere demo reworked into a vite/react app in a monorepo
0
fork
atom
overview
issues
pulls
pipelines
exit with 0
samuel.fm
1 year ago
052613b9
0b2e6b6b
+1
-1
1 changed file
expand all
collapse all
unified
split
packages
appview
src
index.ts
+1
-1
packages/appview/src/index.ts
···
135
135
const onCloseSignal = async () => {
136
136
setTimeout(() => process.exit(1), 10000).unref() // Force shutdown after 10s
137
137
await server.close()
138
138
-
process.exit()
138
138
+
process.exit(0)
139
139
}
140
140
141
141
process.on('SIGINT', onCloseSignal)