From 7a1e5fbcfa333b19450308e7eeab686451f75e8d Mon Sep 17 00:00:00 2001 From: Anton Date: Fri, 17 Nov 2023 17:30:05 +0300 Subject: [PATCH] ci: add bun to test matrix, measure coverage, enable CC reporting --- README.md | 1 + src/main/js/index.mjs | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b61fb74..7e33268 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ ## Requirements * Node.js >= 16.0.0 +* Bun >= 1.0.12 ## Install ```shell diff --git a/src/main/js/index.mjs b/src/main/js/index.mjs index f8d5bbc..ab70138 100644 --- a/src/main/js/index.mjs +++ b/src/main/js/index.mjs @@ -25,8 +25,11 @@ export const $ = new DeepProxy(_$, ({name, DEFAULT, target: t, trapName, args}) return DEFAULT } const env = t.env - t.env = {...t.env, PATH: npmRunPath({cwd: t.cwd})} try { + console.log('PATH0=', t.env.PATH) + const PATH = npmRunPath({cwd: t.cwd}) + console.log('PATH1=', PATH) + t.env = {...t.env, PATH} return t(...args) } finally { t.env = env