From 942f94d52db97e006ad09f098394faa7e906858d Mon Sep 17 00:00:00 2001 From: Hayden Young Date: Tue, 15 Aug 2023 00:45:19 +0100 Subject: [PATCH] refactor: Export all public modules under the OrbitDB webpack package. --- conf/webpack.config.js | 3 +-- conf/webpack.debug.config.js | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/conf/webpack.config.js b/conf/webpack.config.js index 317d398..db526d8 100644 --- a/conf/webpack.config.js +++ b/conf/webpack.config.js @@ -12,8 +12,7 @@ export default (env, argv) => { filename: '../dist/orbitdb.min.js', library: { name: 'OrbitDB', - type: 'var', - export: 'default' + type: 'var' } }, target: 'web', diff --git a/conf/webpack.debug.config.js b/conf/webpack.debug.config.js index d711dd4..e0a222e 100644 --- a/conf/webpack.debug.config.js +++ b/conf/webpack.debug.config.js @@ -12,8 +12,7 @@ export default (env, argv) => { filename: '../dist/orbitdb.js', library: { name: 'OrbitDB', - type: 'var', - export: 'default' + type: 'var' } }, target: 'web',