From 5ba19702a1af7ac94b06c516bb8164fb99b64dac Mon Sep 17 00:00:00 2001 From: Mathieu Davy <“mathieu.davy@nearform.com”> Date: Thu, 5 Oct 2023 11:49:19 +0100 Subject: [PATCH] fix: fix for tests There seems to be a process to publish the module that renames the bundle-esm.js file to bundle.js. I don't know why we need to name the webpack generated file with the -esm suffix. --- src/danfojs-browser/webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/danfojs-browser/webpack.config.js b/src/danfojs-browser/webpack.config.js index 10f8b9d6..d1a1b413 100644 --- a/src/danfojs-browser/webpack.config.js +++ b/src/danfojs-browser/webpack.config.js @@ -12,7 +12,7 @@ const createConfig = () => { target: "web", output: { path: path.resolve(__dirname, "lib"), - filename: "bundle-esm.js", + filename: "bundle.js", library: "dfd" }, module: {