New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gulp-prettyerror

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-prettyerror

Display Errors in a pretty way, without breaking watch tasks

2.0.0
latest
Source
npm
Version published
Weekly downloads
698
33.72%
Maintainers
1
Weekly downloads
 
Created
Source

GULP-PrettyError

Display Errors in a pretty way, without breaking watching tasks

$ yarn add gulp-prettyerror

Screenshot

Features

  • Simple, Robust and Easy to use
  • Displays task errors during development without breaking gulp-watch tasks
  • Uses gulp-plumber to override the standard error handling
  • Output styling created with gulplog and ansi-colors

Usage

var prettyError = require('gulp-prettyerror');

// default release build
gulp.task('js', function (){
    return gulp.src(['Source/Lib/**/*.js')
        // add task error-handler
        .pipe(prettyError())

        // create sourcemaps for development
        .pipe(sourcemaps.init())

        // some stuff
        .pipe(...);
});

Any Questions ? Report a Bug ? Enhancements ?

Please open a new issue on GitHub

License

Gulp-PrettyError is OpenSource and licensed under the Terms of The MIT License (X11). You're welcome to contribute!

Keywords

gulp

FAQs

Package last updated on 24 Dec 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts