chore: webpack should publish to bundles not _bundles (#227)
Signed-off-by: Lucas Holmquist <lholmqui@redhat.com>
This commit is contained in:
parent
99bb88be00
commit
7012433074
|
@ -5,7 +5,7 @@ module.exports = {
|
|||
"cloudevents-sdk": "./browser/index.js"
|
||||
},
|
||||
output: {
|
||||
path: path.resolve(__dirname, "_bundles"),
|
||||
path: path.resolve(__dirname, "bundles"),
|
||||
filename: "[name].js",
|
||||
libraryTarget: "umd",
|
||||
library: "cloudevents-sdk",
|
||||
|
@ -13,4 +13,4 @@ module.exports = {
|
|||
},
|
||||
devtool: "source-map",
|
||||
mode: "production"
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue