npkgz / gulp-prettyerror

:hash: Display Errors in a pretty way, without breaking watch tasks
https://www.npmjs.com/package/gulp-prettyerror
MIT License
14 stars 1 forks source link
developer-tools error-handling error-messages error-reporting gulp gulp-plugin

GULP-PrettyError

Display Errors in a pretty way, without breaking watching tasks

$ yarn add gulp-prettyerror

Screenshot

Features

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!