gulp.options.silent = true
See original GitHub issueAs 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:
- Created 9 years ago
- Comments:6 (3 by maintainers)
Top 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 >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
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 onlygulp-rev-all
'sgutil.log
statements.