Skip to content

Commit

Permalink
chore: test webpacking
Browse files Browse the repository at this point in the history
  • Loading branch information
jeswr committed May 15, 2023
1 parent 85ed509 commit e3d5a94
Show file tree
Hide file tree
Showing 4 changed files with 1,296 additions and 40 deletions.
1 change: 1 addition & 0 deletions e2e/bundle/import.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import * as all from '../../dist';
9 changes: 9 additions & 0 deletions e2e/bundle/webpack.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const path = require("path");
module.exports = {
mode: "development",
entry: path.resolve(__dirname, "import.js"),
output: {
path: path.resolve(__dirname, "dist"),
filename: "import.js",
},
};
Loading

0 comments on commit e3d5a94

Please sign in to comment.