1.3.1 • Published 9 years ago

gulp-check-constants v1.3.1

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

gulp-check-constants

Find numbers that should be extracted to a declaration statement using check-constants

NPM Version NPM Downloads Build Status

Issues with the output should be reported on the check-constants issue tracker.

Install

Install with npm

$ npm install --save-dev gulp-check-constants

Usage

var gulp = require('gulp');
var checkConstants = require('gulp-check-constants');

//example with basic css copying
gulp.task('js', function() {
    gulp.src('./src/js/**/*.js')
        .pipe(checkConstants())
        .pipe(gulp.dest('./public/js'));
});

//example with custom options
gulp.task('js', function() {
    gulp.src('./src/js/**/*.js')
        .pipe(checkConstants({
                enforceConst: true,
                ignore: [0, 1, 2, 3, 10]
        }))
        .pipe(gulp.dest('./public/js'));
});

API

See the check-constants Options except for file which is handled for you.

License

MIT @Gilad Peleg