From b5f6fc2933b63375feb42cbee386a3e03bb14733 Mon Sep 17 00:00:00 2001 From: Lucas Holmquist Date: Wed, 17 Jun 2020 11:48:19 -0400 Subject: [PATCH] chore: webpack should publish to bundles not _bundles Signed-off-by: Lucas Holmquist --- webpack.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index 293a6454..17e664cf 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -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" -}; \ No newline at end of file +};