Re: [nodejs] Is it possible to halt npm install before running any install scripts?

2016-10-13 Thread Paul Johnston
Thanks Ryan, that looks good. On Thursday, October 13, 2016 at 6:33:49 AM UTC-6, Ryan Graham wrote: > > You could do `npm install --ignore-scripts`, run your checks, and then do > `npm rebuild`. That should do what you want. > > These commands are also useful for bundled dependency workflows,

Re: [nodejs] Is it possible to halt npm install before running any install scripts?

2016-10-13 Thread Ryan Graham
You could do `npm install --ignore-scripts`, run your checks, and then do `npm rebuild`. That should do what you want. These commands are also useful for bundled dependency workflows, by the way. ~Ryan On Thu, Oct 13, 2016, 3:38 AM Paul Johnston wrote: > I'd like to be able

[nodejs] Is it possible to halt npm install before running any install scripts?

2016-10-12 Thread Paul Johnston
I'd like to be able to invoke 'npm install foo bar baz', and - have npm setup the node_modules folder with all the necessary artifacts (downloaded), - *not* proceed to call install scripts for those modules right away. - (At this point, I'd like to be able to examine and content-digest