8000 chore: webpack should publish to bundles not _bundles (#227) · cloudevents/sdk-javascript@7012433 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7012433

Browse files
authored
chore: webpack should publish to bundles not _bundles (#227)
Signed-off-by: Lucas Holmquist <lholmqui@redhat.com>
1 parent 99bb88b commit 7012433

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webpack.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ module.exports = {
55
"cloudevents-sdk": "./browser/index.js"
66
},
77
output: {
8-
path: path.resolve(__dirname, "_bundles"),
8+
path: path.resolve(__dirname, "bundles"),
99
filename: "[name].js",
1010
libraryTarget: "umd",
1111
library: "cloudevents-sdk",
1212
umdNamedDefine: true
1313
},
1414
devtool: "source-map",
1515
mode: "production"
16-
};
16+
};

0 commit comments

Comments
 (0)
0