We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71b3460 commit 173fa3dCopy full SHA for 173fa3d
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@cuban-engineer/redux-storage-middleware",
3
- "version": "0.1.7",
+ "version": "0.1.8",
4
"description": "Redux middleware for synchronizing store state with browser storages ",
5
"main": "./dist/reduxStorageMiddleware.js",
6
"scripts": {
webpack.config.js
@@ -1,12 +1,13 @@
var path = require('path');
module.exports = {
- mode: 'production',
+ mode: 'development',
entry: './src/index.js',
output: {
7
path: path.resolve(__dirname, 'dist'),
8
filename: 'reduxStorageMiddleware.js',
9
library: 'reduxStorageMiddleware',
10
- libraryTarget: 'umd',
+ libraryTarget: 'commonjs2',
11
+ libraryExport: 'default',
12
},
13
};
0 commit comments