How do you use the ‘files’ and ‘directories’ properties in package.json?
“include in your project” means the files will be in the packaged tarball that is created when you run npm publish. You can also run npm pack to generate the tarball for inspection without actually triggering a publish. This way you can actually open the generated tarball and inspect which files were/were not included. While … Read more