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
This commit is contained in:
Sam Atkins 2024-05-01 14:30:03 +01:00
parent 8d4a1e0ed3
commit d17e0b80b3

View File

@ -5,6 +5,7 @@
// The implementation of this in packages/backend might not // The implementation of this in packages/backend might not
// work in older versions of node, so we instead re-implement // work in older versions of node, so we instead re-implement
// it here. // it here.
import console from 'node:console';
import process from 'node:process'; import process from 'node:process';
const surrounding_box = (col, lines) => { const surrounding_box = (col, lines) => {