formalize
Version:
Node.js NoSQL ActiveRecord ORM layer for FoundationDB
25 lines (21 loc) • 522 B
text/coffeescript
module.exports = (grunt) ->
grunt.initConfig
pkg: grunt.file.readJSON 'package.json'
clean:
default:
src: ['lib']
coffee:
compile:
options:
bare: false
join: false
files: [
expand: true
cwd: 'src'
src: '**/*.coffee'
dest: 'lib'
ext: '.js'
]
grunt.loadNpmTasks('grunt-contrib-clean')
grunt.loadNpmTasks('grunt-contrib-coffee')
grunt.registerTask('default', ['clean', 'coffee'])