Skip to content

Commit 1dd5269

Browse files
committed
xo: Fix unicorn/prefer-node-protocol.
Signed-off-by: Anders Kaseorg <[email protected]>
1 parent d33adca commit 1dd5269

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

scripts/notarize.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use strict";
2-
const path = require("path");
3-
const process = require("process");
2+
const path = require("node:path");
3+
const process = require("node:process");
44

55
const dotenv = require("dotenv");
66
const {notarize} = require("electron-notarize");

tests/setup.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use strict";
2-
const path = require("path");
3-
const process = require("process");
2+
const path = require("node:path");
3+
const process = require("node:process");
44

55
const {_electron} = require("playwright-core");
66
const rimraf = require("rimraf");

0 commit comments

Comments
 (0)