From d17e0b80b382e7af5bcfa9225f00ff99b93243c3 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Wed, 1 May 2024 14:30:03 +0100 Subject: [PATCH] chore: Add missing import for node:console Solves these eslint issues: /puter/run-selfhosted.js 49:9 error 'console' is not defined no-undef 64:5 error 'console' is not defined no-undef 127:5 error 'console' is not defined no-undef --- run-selfhosted.js | 1 + 1 file changed, 1 insertion(+) diff --git a/run-selfhosted.js b/run-selfhosted.js index a974db39..e8621d02 100644 --- a/run-selfhosted.js +++ b/run-selfhosted.js @@ -5,6 +5,7 @@ // The implementation of this in packages/backend might not // work in older versions of node, so we instead re-implement // it here. +import console from 'node:console'; import process from 'node:process'; const surrounding_box = (col, lines) => {