chore: webpack should publish to bundles not _bundles (#227)

Signed-off-by: Lucas Holmquist <lholmqui@redhat.com>
This commit is contained in:
Lucas Holmquist 2020-06-17 16:05:31 -04:00 committed by GitHub
parent 99bb88be00
commit 7012433074
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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"
};
};