balena-cli/gulpfile.coffee

35 lines
817 B
CoffeeScript
Raw Normal View History

2014-10-31 09:48:53 -04:00
path = require('path')
2014-10-31 09:37:29 -04:00
gulp = require('gulp')
2014-12-30 09:44:03 -04:00
coffee = require('gulp-coffee')
2014-10-31 09:48:53 -04:00
coffeelint = require('gulp-coffeelint')
2014-12-30 13:12:18 -04:00
shell = require('gulp-shell')
packageJSON = require('./package.json')
2014-10-31 09:37:29 -04:00
OPTIONS =
2014-10-31 09:50:50 -04:00
config:
coffeelint: path.join(__dirname, 'coffeelint.json')
files:
coffee: [ 'lib/**/*.coffee', 'gulpfile.coffee' ]
app: [ 'lib/**/*.coffee', '!lib/**/*.spec.coffee' ]
directories:
2014-12-30 09:44:03 -04:00
build: 'build/'
gulp.task 'coffee', [ 'lint' ], ->
2014-12-30 09:44:03 -04:00
gulp.src(OPTIONS.files.app)
.pipe(coffee())
.pipe(gulp.dest(OPTIONS.directories.build))
2014-10-31 09:48:53 -04:00
gulp.task 'lint', ->
2014-10-31 09:50:50 -04:00
gulp.src(OPTIONS.files.coffee)
.pipe(coffeelint({
optFile: OPTIONS.config.coffeelint
}))
.pipe(coffeelint.reporter())
2014-10-31 09:48:53 -04:00
gulp.task 'build', [
2015-02-26 11:46:57 -04:00
'coffee'
]
gulp.task 'watch', [ 'lint', 'coffee' ], ->
2015-08-04 10:00:09 -04:00
gulp.watch([ OPTIONS.files.coffee ], [ 'coffee' ])