From d6c751860c4693ef95acbac85769d25f5365f064 Mon Sep 17 00:00:00 2001 From: Peter Krieg Date: Wed, 8 Dec 2021 09:32:57 -0700 Subject: [PATCH] Switch Library Type from CommonJs2 => UMD (#134) --- webpack.config.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index 0415dcd..f34d3ab 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -6,7 +6,10 @@ module.exports = { output: { path: path.resolve(__dirname, "build"), filename: "index.js", - libraryTarget: "commonjs2", // THIS IS THE MOST IMPORTANT LINE! :mindblow: I wasted more than 2 days until realize this was the line most important in all this guide. + library: { + name: "ReactCookieConsent", + type: "umd", + }, environment: { arrowFunction: false, // the generated runtime-code should not use arrow functions }, @@ -16,7 +19,7 @@ module.exports = { { test: /\.js$/, include: path.resolve(__dirname, "src"), - exclude: /(node_modules|bower_components|build)/, + exclude: /(node_modules|build)/, use: { loader: "babel-loader", options: {