I am trying to test one of the package locally. What I do is go the root directory of my package and run
npm pack
It creates .tgz file and I install this file via npm i <path to file>
. Now I found that some of my recent changes are missing in this .tgz file. I have made some tiny modifications in css file and those are not reflected in packaged .tgz file. I am not sure what is wrong here. I have looked into internet but all questions in SA and other resources says to use 'npm pack' to create tgz file, but not about this issue.
npm version 6.14.13