From 4a157c3b47b38b8286be98d4e302e55428ddaa3e Mon Sep 17 00:00:00 2001 From: David-Emmanuel DIVERNOIS Date: Thu, 1 Dec 2022 17:24:39 +0100 Subject: [PATCH] chore: keep previous behavior regarding how import is compiled cf https://github.com/rollup/rollup/pull/4647 This fixes e2e tests on Windows. --- packages/rollup.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/rollup.config.js b/packages/rollup.config.js index da02de2..f16d6db 100644 --- a/packages/rollup.config.js +++ b/packages/rollup.config.js @@ -10,6 +10,7 @@ module.exports = [ { file: path.join(__dirname, '../dist/index.js'), format: 'cjs', + dynamicImportInCjs: false, }, ], input: path.join(__dirname, './index.ts'),