When autoWatch=false, there's a conditional to keep watchify from rebundling. However, browserify is still always wrapped in watchify, generating a transform that creates watchers for all files passing through, which can be quite expensive, especially considering they serve no purpose.
When
autoWatch=false
, there's a conditional to keep watchify from rebundling. However,browserify
is still always wrapped inwatchify
, generating a transform that creates watchers for all files passing through, which can be quite expensive, especially considering they serve no purpose.