Skip to content

Commit

Permalink
πŸ› fix: rollup relative path on linux (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
janisslsm authored Jan 25, 2025
1 parent 0dcc2d1 commit 8fc2ef6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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 }),
Expand Down

0 comments on commit 8fc2ef6

Please sign in to comment.