pofile/Gruntfile.coffee
Ruben Vermeersch 51aeb26844 Add grunt-bump.
2013-12-20 09:41:38 +01:00

54 lines
1.4 KiB
CoffeeScript

module.exports = (grunt) ->
@loadNpmTasks('grunt-browserify')
@loadNpmTasks('grunt-bump')
@loadNpmTasks('grunt-contrib-clean')
@loadNpmTasks('grunt-contrib-jshint')
@loadNpmTasks('grunt-contrib-uglify')
@loadNpmTasks('grunt-contrib-watch')
@loadNpmTasks('grunt-mocha-cli')
@initConfig
clean:
dist: ['dist']
jshint:
all: [ 'lib/*.js', 'test/*.js' ]
options:
jshintrc: '.jshintrc'
watch:
all:
options:
atBegin: true
files: ['lib/**.js', 'test/*{,/*}']
tasks: ['test']
mochacli:
options:
files: 'test/*.js'
spec:
options:
reporter: 'spec'
browserify:
dist:
files:
'dist/pofile.js': ['lib/po.js']
options:
alias: 'lib/po.js:pofile'
uglify:
dist:
files:
'dist/pofile.min.js': 'dist/pofile.js'
bump:
options:
files: ['package.json', 'bower.json']
commitFiles: ['-a']
pushTo: 'origin'
@registerTask 'default', ['test']
@registerTask 'build', ['clean', 'jshint', 'browserify', 'uglify']
@registerTask 'test', ['build', 'mochacli']