From 882b9055c70240ee027cbfd197183ce8e3ed1046 Mon Sep 17 00:00:00 2001 From: Kevin Jahns Date: Tue, 14 Jan 2020 02:36:29 +0100 Subject: [PATCH] fix localimports path ending --- rollup.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rollup.config.js b/rollup.config.js index a1b03797..9fe1eece 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -26,7 +26,7 @@ const debugResolve = { } if (localImports) { if (customModules.has(importee.split('/')[0])) { - return `${process.cwd()}/../${importee}/src/${importee}.cjs` + return `${process.cwd()}/../${importee}/src/${importee}.js` } if (customLibModules.has(importee.split('/')[0])) { return `${process.cwd()}/../${importee}`