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
.
The way I have done it at the moment is, I have created a bash script:
npm run build
cp package.json ./dist
# or, if you need to have package.json "main" entry different,
# e.g. for being able to use `npm link`, you need to replace "main" value:
# sed 's#"main": "./dist/index.js"#"main": "./index.js"#' package.json > ./dist/package.json
cd ./dist
npm publish
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With