Include node_modules in uploaded bundle#670
Conversation
This should allow the bundle to be used directly without running `npm install` or `npm ci` as post-install step.
kripken
left a comment
There was a problem hiding this comment.
Sounds like this increases package size by 30MB?
Do the packages still work if the user does npm ci?
I see the npm ci command here, but where are the node_modules files copied? Or do we copy a parent directory with all subchildren?
Yes, but its saves each user from having to run
Yes, I believe users can always run this, even if we pre-seed the directory modules.
The the command is run in |
This should allow the bundle to be used directly without running
npm installornpm cias post-install step.