Even when using npm install --quiet or npm install --loglevel=error, if a rebuild of this module is triggered it will dump hundreds of lines of gyp and make logs to the console. It's not really possible to control this output since the --verbose flag is being set explicitly by the build script. I feel like verbosity within scripts should probably always remain user-configurable.
|
var args = [require.resolve(path.join('node-gyp', 'bin', 'node-gyp.js')), 'rebuild', '--verbose'].concat( |
Even when using
npm install --quietornpm install --loglevel=error, if a rebuild of this module is triggered it will dump hundreds of lines ofgypandmakelogs to the console. It's not really possible to control this output since the--verboseflag is being set explicitly by the build script. I feel like verbosity within scripts should probably always remain user-configurable.node-sass/scripts/build.js
Line 59 in a2ac801