We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b84af7 commit 98bc8baCopy full SHA for 98bc8ba
packages/server/src/service.ts
@@ -28,7 +28,10 @@ export function useService(
28
): Operation<void> {
29
return resource(function* (provide) {
30
if (cmd.startsWith("npm")) {
31
- throw new Error("scripts run with node don't respect signals");
+ // see https://github.com/npm/cli/issues/6684
32
+ throw new Error(
33
+ "scripts run with npm don't respect signals to properly shutdown"
34
+ );
35
}
36
const process = yield* useProcess(cmd, options.processOptions);
37
0 commit comments