Closed edmorley closed 6 years ago
Neutrino has a --debug CLI option, which currently only affects two things:
--debug
babel-preset-env
--inspect
start-server-webpack-plugin
I've had a bit of a look, and there are a few more places where we could choose to vary behaviour when --debug is passed:
debug
warning
info
verbose
false
true
logLevel
LOG_INFO
LOG_DEBUG
stats
noInfo
I'll open PRs for some of the above. If anyone wants to help out, or can think of others to add to the list, please say :-)
Hey I'd like to jump in and tackle the Jest issue as a first contribution if that's cool
@ahulab Go for it :)
I think we're mostly done here; anything else we can file separate issues for.
Neutrino has a
--debug
CLI option, which currently only affects two things:babel-preset-env
debug mode--inspect
to be passed tostart-server-webpack-plugin
I've had a bit of a look, and there are a few more places where we could choose to vary behaviour when
--debug
is passed:debug
defaults towarning
, but can also be set toinfo
ordebug
(docs)verbose
defaults tofalse
, but could be set totrue
(docs)logLevel
defaults toLOG_INFO
, but could be set toLOG_DEBUG
(docs)verbose
anddebug
options that could be enabled (docs)stats
optimizationBailout option could be set (docs)noInfo
andstats
configs could be adjusted (docs and docs)stats
config could be adjusted (docs)I'll open PRs for some of the above. If anyone wants to help out, or can think of others to add to the list, please say :-)