Sep 19 2019 08:32 AM - edited Sep 19 2019 08:36 AM
Hi There,
When I would like to package my SPFX WebPart (https://github.com/SharePoint/sp-dev-fx-webparts/tree/master/samples/js-skype-status), and the document says "After copying that sample to your local machine and running npm install to install the dependencies" so I run the "npm install" and finally perform the command : gulp package-solution. Meantime, I got the following error ... Is there anyone who has any idea on it??
My node.js version is 10.16.3
My npm version is 6.11.3 (the lasted one)
"
"
Sep 20 2019 06:14 AM
First thing to try - delete node_modules and package-lock.json
After that, install everything again and try packaging your solution. If that doesn't work, try explicitly updating natives to 1.1.6
rm rf node_modules
rm rf package-lock.json
npm i
npm install natives@1.1.6