fix: importing from electron/utility in ESM (#47998)

This commit is contained in:
David Sanders 2025-08-09 00:47:47 -07:00 committed by GitHub
commit d6c0691a63
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
22 changed files with 228 additions and 7 deletions

View file

@ -0,0 +1,3 @@
const { net } = require('electron/renderer');
process.exit(net !== undefined ? 0 : 1);