From 010dd9d4687c1e292d131c375b3524fbab75db9c Mon Sep 17 00:00:00 2001 From: Michael Haufe Date: Sun, 25 Oct 2020 14:21:15 -0500 Subject: [PATCH] Fixed webpack configuration --- package-lock.json | 2 +- package.json | 2 +- webpack.config.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8b98f7b..b185d9c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@final-hill/class-tools", - "version": "1.1.0", + "version": "1.2.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 01ccdd4..a5ddb5a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@final-hill/class-tools", - "version": "1.1.0", + "version": "1.2.0", "description": "Class Tools provides a number of utility functions and decorators to ease the use of features commonly found in functional languages", "main": "dist/index.js", "scripts": { diff --git a/webpack.config.js b/webpack.config.js index d4808b2..156a7e6 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -27,7 +27,7 @@ module.exports = { output: { filename: 'index.js', library: 'class-tools', - libraryExport: 'default', + libraryExport: '', libraryTarget: 'umd', globalObject: 'this', path: path.resolve(__dirname, 'dist'),