1.0.0 • Published 8 years ago

gulp-rb-validate-minified v1.0.0

Weekly downloads
-
License
LicenseRef-LICENS...
Repository
-
Last release
8 years ago

#Installation

Install package with NPM and add it to your development dependencies:

npm install gulp-rb-validate-minified --save-dev

#Usage

var rbminified = require('gulp-rb-validate-minified');

gulp.task('rb-validate', function () {

    gulp.src('dist/**/*.{css,js}')
        .pipe(rbminified());
        
    });

With Parameter

var rbpackage  = require('gulp-rb-validate-minified');

gulp.task('rb-validate', function () {

    gulp.src('dist/**/*.{css,js}')
        .pipe(rbminified({
            exitOnError: true
        });
        
    });

#Parameters

exitOnError: Boolean (Default: false)

Exit with code 1 if an error with obligation level red is found.

1.0.0

8 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago