From baef5848826734dc6f36305e7ead00b13cfcdf4e Mon Sep 17 00:00:00 2001 From: Jelle van der Waa Date: Wed, 17 Jul 2024 12:31:15 +0200 Subject: [PATCH] build: don't rely on implicitly imported process This was fixed in Cockpit in cf1cca4166af4c59531850a8e0d0f20f6f455152 --- build.js | 1 + 1 file changed, 1 insertion(+) diff --git a/build.js b/build.js index d0b5df0..f3bfaf1 100755 --- a/build.js +++ b/build.js @@ -2,6 +2,7 @@ import fs from 'node:fs'; import path from 'node:path'; +import process from 'node:process'; import os from 'node:os'; import copy from 'esbuild-plugin-copy';