From df3e0b94248ae684be70c9436fbc2ad031f40e69 Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Mon, 20 Oct 2025 13:08:43 +0000 Subject: [PATCH] fix: import process from node:process in script-action Fixes TS2580 error where process was undefined --- ts/actions/script-action.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/ts/actions/script-action.ts b/ts/actions/script-action.ts index f57e17d..5191253 100644 --- a/ts/actions/script-action.ts +++ b/ts/actions/script-action.ts @@ -1,5 +1,6 @@ import * as path from 'node:path'; import * as fs from 'node:fs'; +import process from 'node:process'; import { exec } from 'node:child_process'; import { promisify } from 'node:util'; import { Action, type IActionConfig, type IActionContext } from './base-action.ts';