Skip to content

Commit 5ba1970

Browse files
author
Mathieu Davy
committed
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.
1 parent 7638681 commit 5ba1970

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/danfojs-browser/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const createConfig = () => {
1212
target: "web",
1313
output: {
1414
path: path.resolve(__dirname, "lib"),
15-
filename: "bundle-esm.js",
15+
filename: "bundle.js",
1616
library: "dfd"
1717
},
1818
module: {

0 commit comments

Comments
 (0)