I'm creating a web service using nem-sdk on Vue.js/webpack and got the following warnings on running "npm run dev".
$ npm run dev
WARNING Compiled with 3 warnings
warning in ./node_modules/nem-sdk/node_modules/ajv/lib/async.js
119:15-28 Critical dependency: the request of a dependency is an expression
warning in ./node_modules/nem-sdk/node_modules/ajv/lib/compile/index.js
13:21-34 Critical dependency: the request of a dependency is an expression
warning in ./node_modules/nem-sdk/node_modules/ajv/lib/async.js
96:20-33 Critical dependency: the request of a dependency is an expression
I think request(using ajv) required by nem-sdk would be old.
So i made the following change in package.json and then it works fine.
I'm creating a web service using nem-sdk on Vue.js/webpack and got the following warnings on running "npm run dev".
I think request(using ajv) required by nem-sdk would be old. So i made the following change in package.json and then it works fine.
It would be great if you could fix it... Thanks!