UNPKG

inquirer-dynamic-list

Version:

A subclass of inquirer's list whose choices can be updated on the fly

42 lines (35 loc) 918 B
path = require('path') gulp = require('gulp') mocha = require('gulp-mocha') gutil = require('gulp-util') coffeelint = require('gulp-coffeelint') coffee = require('gulp-coffee') OPTIONS = config: coffeelint: path.join(__dirname, 'coffeelint.json') files: coffee: [ 'lib/**/*.coffee', 'tests/**/*.spec.coffee', 'gulpfile.coffee' ] app: 'lib/**/*.coffee' tests: 'tests/**/*.spec.coffee' gulp.task 'coffee', -> gulp.src(OPTIONS.files.app) .pipe(coffee(bare: true)).on('error', gutil.log) .pipe(gulp.dest('build/')) gulp.task 'test', -> gulp.src(OPTIONS.files.tests, read: false) .pipe(mocha({ reporter: 'min' })) gulp.task 'lint', -> gulp.src(OPTIONS.files.coffee) .pipe(coffeelint({ optFile: OPTIONS.config.coffeelint })) .pipe(coffeelint.reporter()) gulp.task 'build', [ 'lint' 'test' 'coffee' ] gulp.task 'watch', [ 'build' ], -> gulp.watch(OPTIONS.files.coffee, [ 'build' ])