You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.6 KiB
49 lines
1.6 KiB
const gulp = require('gulp')
|
|
const ava = require('gulp-ava')
|
|
const eslint = require('gulp-eslint')
|
|
const rename = require('gulp-rename')
|
|
const sourcemaps = require('gulp-sourcemaps')
|
|
const uglify = require('gulp-uglify')
|
|
const pump = require('pump')
|
|
|
|
gulp.task('lint', () => gulp.src(['**/*.js', '!docs/**', '!node_modules/**', '!dist/**', '!test/helpers/**/*.js'])
|
|
.pipe(eslint({
|
|
parser: 'babel-eslint',
|
|
rules: {
|
|
// quotes: ['error', 'single'],
|
|
'curly': 'error',
|
|
'eqeqeq': 'error',
|
|
'new-parens': 'error',
|
|
'no-cond-assign': 'error',
|
|
'no-console': 'error',
|
|
'no-debugger': 'error',
|
|
'no-empty': 'error',
|
|
'no-fallthrough': 'error',
|
|
'no-trailing-spaces': 'error',
|
|
'no-mixed-spaces-and-tabs': 'error',
|
|
}
|
|
}))
|
|
.pipe(eslint.format())
|
|
.pipe(eslint.failAfterError()))
|
|
|
|
gulp.task('test', () => gulp.src('test/**/*.js')
|
|
.pipe(ava({ verbose: true })))
|
|
|
|
gulp.task('watch', () => {
|
|
gulp.watch(['chance.js', 'gulpfile.js', 'test/**/*.js'], ['lint', 'test'])
|
|
})
|
|
|
|
gulp.task('watch-lint', () => {
|
|
gulp.watch(['chance.js', 'gulpfile.js', 'test/**/*.js'], ['lint'])
|
|
})
|
|
|
|
gulp.task('build', (cb) => {
|
|
pump([ gulp.src('chance.js'), sourcemaps.init(),
|
|
rename('chance.min.js'), uglify(), sourcemaps.write('.'),
|
|
gulp.dest('dist'),
|
|
], cb)
|
|
})
|
|
|
|
gulp.task('travis', gulp.series('lint', 'test'))
|
|
|
|
gulp.task('default', gulp.series('watch', 'lint', 'test'))
|
|
|