From 8fc2ef648bfe85c4f1225c92fa52419998e5998e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C4=81nis?= <97699850+janisslsm@users.noreply.github.com> Date: Sat, 25 Jan 2025 13:55:40 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20rollup=20relative=20path?= =?UTF-8?q?=20on=20linux=20(#7)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- rollup.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rollup.config.mjs b/rollup.config.mjs index 73a0737..4d0aded 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -43,7 +43,7 @@ const config = { plugins: [ - paths({ preserveExtensions: true, nonRelative: process.platform === 'darwin' ? false : true }), + paths({ preserveExtensions: true, nonRelative: !(process.platform === 'darwin' || process.platform === 'linux') }), node(), json(), replace({ preventAssignment: true, __VERSION__: revision }),