refactor: use node scheme imports in spec (#38487)

Co-authored-by: Milan Burda <miburda@microsoft.com>
This commit is contained in:
Milan Burda 2023-06-15 16:42:27 +02:00 committed by GitHub
parent bf1ba4a857
commit d78f37ec8f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
105 changed files with 533 additions and 352 deletions

View file

@ -2,7 +2,7 @@
<body>
<script type="text/javascript" charset="utf-8">
window.addEventListener('unload', function (e) {
require('fs').writeFileSync(__dirname + '/close', 'close');
require('node:fs').writeFileSync(__dirname + '/close', 'close');
}, false);
window.onload = () => window.close();
</script>

View file

@ -1,5 +1,5 @@
const { app, BrowserWindow } = require('electron');
const path = require('path');
const path = require('node:path');
let win;
app.whenReady().then(function () {

View file

@ -1,6 +1,6 @@
const { app, BrowserWindow, ipcMain } = require('electron');
const net = require('net');
const path = require('path');
const net = require('node:net');
const path = require('node:path');
process.on('uncaughtException', () => {
app.exit(1);

View file

@ -1,5 +1,5 @@
const { app } = require('electron');
const net = require('net');
const net = require('node:net');
const socketPath = process.platform === 'win32' ? '\\\\.\\pipe\\electron-app-relaunch' : '/tmp/electron-app-relaunch';

View file

@ -1,6 +1,6 @@
const { app, safeStorage, ipcMain } = require('electron');
const { promises: fs } = require('fs');
const path = require('path');
const { promises: fs } = require('node:fs');
const path = require('node:path');
const pathToEncryptedString = path.resolve(__dirname, '..', 'encrypted.txt');
const readFile = fs.readFile;

View file

@ -1,6 +1,6 @@
const { app, safeStorage, ipcMain } = require('electron');
const { promises: fs } = require('fs');
const path = require('path');
const { promises: fs } = require('node:fs');
const path = require('node:path');
const pathToEncryptedString = path.resolve(__dirname, '..', 'encrypted.txt');
const writeFile = fs.writeFile;

View file

@ -1,6 +1,6 @@
const { app } = require('electron');
const fs = require('fs');
const path = require('path');
const fs = require('node:fs');
const path = require('node:path');
// non-existent user data folder should not break requestSingleInstanceLock()
// ref: https://github.com/electron/electron/issues/33547

View file

@ -2,7 +2,7 @@
<body>
<script type="text/javascript" charset="utf-8">
window.addEventListener('unload', function (e) {
require('fs').writeFileSync(__dirname + '/unload', 'unload');
require('node:fs').writeFileSync(__dirname + '/unload', 'unload');
}, false);
</script>
</body>

View file

@ -1,5 +1,5 @@
const { app, utilityProcess } = require('electron');
const path = require('path');
const path = require('node:path');
app.whenReady().then(() => {
let child = null;

View file

@ -1,5 +1,5 @@
const { app, utilityProcess } = require('electron');
const path = require('path');
const path = require('node:path');
app.whenReady().then(() => {
const payload = app.commandLine.getSwitchValue('payload');

View file

@ -1,5 +1,5 @@
const { app, utilityProcess } = require('electron');
const path = require('path');
const path = require('node:path');
app.whenReady().then(() => {
const payload = app.commandLine.getSwitchValue('payload');

View file

@ -1,2 +1,2 @@
const result = require('child_process').execSync('sudo --help');
const result = require('node:child_process').execSync('sudo --help');
process.parentPort.postMessage(result);