Skip to content

Commit

Permalink
fix: error with trying to handle SIGKILL (#14208)
Browse files Browse the repository at this point in the history
  • Loading branch information
anatawa12 authored Jul 14, 2024
1 parent 4b9c60a commit d47fd4f
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion packages/misskey-bubble-game/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ async function watchSrc() {
process.on('SIGHUP', resolve);
process.on('SIGINT', resolve);
process.on('SIGTERM', resolve);
process.on('SIGKILL', resolve);
process.on('uncaughtException', reject);
process.on('exit', resolve);
}).finally(async () => {
Expand Down
1 change: 0 additions & 1 deletion packages/misskey-js/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ async function watchSrc() {
process.on('SIGHUP', resolve);
process.on('SIGINT', resolve);
process.on('SIGTERM', resolve);
process.on('SIGKILL', resolve);
process.on('uncaughtException', reject);
process.on('exit', resolve);
}).finally(async () => {
Expand Down
1 change: 0 additions & 1 deletion packages/misskey-reversi/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ async function watchSrc() {
process.on('SIGHUP', resolve);
process.on('SIGINT', resolve);
process.on('SIGTERM', resolve);
process.on('SIGKILL', resolve);
process.on('uncaughtException', reject);
process.on('exit', resolve);
}).finally(async () => {
Expand Down

0 comments on commit d47fd4f

Please sign in to comment.