question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

gulp.options.silent = true

See original GitHub issue

As I can see from the source the silent options is only available from the command-line. Any way to do it like:

var gulp = require('gulp');
gulp.options({ silent: true }); // or something

Issue Analytics

  • State:closed
  • Created 9 years ago
  • Comments:6 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
yocontracommented, Aug 28, 2014
require('gulp-util').log = require('noop');
0reactions
ghostcommented, Mar 10, 2015

Not a gulp specific option, but try sandboxed-module if you really want to silence a particular plugin. It allows you to monkeypatch requires from modules, thus also enabling you to add logic to only gulp-rev-all 's gutil.log statements.

Read more comments on GitHub >

github_iconTop Results From Across the Web

src() - gulp.js
name type default buffer boolean function true read boolean function true since date timestamp function
Read more >
Set Vue.config.silent true automaticaly on gulp --production
How i can can make it work? My app.js file is like this: import Vue from 'vue'; import VueResource from 'vue-resource'; import $...
Read more >
When using gulp. Is there any way to suppress the 'Started ...
You can use the --silent flag with the gulp CLI to disable all gulp logging. https://github.com/gulpjs/gulp/blob/master/docs/CLI.md.
Read more >
Gulp - Package Control
To kill running tasks like watch you have two options, you can pick the ... If true it will open the output panel...
Read more >
gulp-unused - npm
return gulp.src(['index.js', 'lib/*.js']) .pipe(unused({utils: 'lib/utils.js'}));. });. Unless options.silent is true, the following would ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found