ERROR in ./node_modules/redux-offline-queue/lib/offlineActions.js 17:9-27
Module not found: Error: Package path ./v4 is not exported from package /home/user/Desktop/app/node_modules/redux-offline-queue/node_modules/uuid (see exports field in /home/user/Desktop/app/node_modules/redux-offline-queue/node_modules/uuid/package.json)
ERROR in ./node_modules/redux-offline-queue/lib/offlineMiddleware.js 13:9-27
Module not found: Error: Package path ./v4 is not exported from package /home/user/Desktop/app/node_modules/redux-offline-queue/node_modules/uuid (see exports field in /home/user/Desktop/app/node_modules/redux-offline-queue/node_modules/uuid/package.json)
If i change this line var _v = require('uuid/v4'); with this var { v4: _v } = require('uuid'); in both files, everything work fine.
Hello! Please, fix the following errors:
If i change this line
var _v = require('uuid/v4');
with thisvar { v4: _v } = require('uuid');
in both files, everything work fine.