How to streamline npm release
when I want to include only specific path(s)?
I have ./src
and ./dist
files in my repository. I want to effectively publish only the contents of ./dist
+ ./package.json
.
Using .npmignore
to ignore ./src
will simply ignore the ./src
folder. I want to include only the contents of ./dist
, i.e. now user would need to do require('my-package/dist/something')
. I want to make it require('my-package/something')
. ./something
is contained in ./dist
.