It would be helpful to have build scripts that allowed republishing without the long running time that np comes with by default. Here are the new build types to add:
release no-cleanup: skips cleanup of node_modules
release yolo: skips cleanup of node_modules & testing
These are actually the names that the np project uses, being co-opted for quicker builds. To add this, we'll just need to update the build script to accept arguments like the test script already does.. This probably requires a new script for managing publishes.
It would be helpful to have build scripts that allowed republishing without the long running time that
np
comes with by default. Here are the new build types to add:release no-cleanup
: skips cleanup ofnode_modules
release yolo
: skips cleanup ofnode_modules
& testingThese are actually the names that the
np
project uses, being co-opted for quicker builds.To add this, we'll just need to update the build script to accept arguments like the test script already does.. This probably requires a new script for managing publishes.