gulp-check-constants

1.3.1 • Public • Published

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

Package Sidebar

Install

npm i gulp-check-constants

Weekly Downloads

2

Version

1.3.1

License

MIT

Last publish

Collaborators

  • pgilad