gulp-check-constants

Find numbers that should be extracted as a declaration statement

Usage no npm install needed!

<script type="module">
  import gulpCheckConstants from 'https://cdn.skypack.dev/gulp-check-constants';
</script>

README

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