UNPKG

charlike

Version:

Small, fast, simple and streaming project scaffolder for myself, but not only. Supports hundreds of template engines through the @JSTransformers API or if you want custom `render` function passed through options

19 lines (16 loc) 388 B
module.exports = function(grunt) { grunt.initConfig({ jshint: { all: ['Gruntfile.js', 'lib/*.js', 'test/*.js'] }, vows: { all: { src: ['test/*.js'], } } }); grunt.loadNpmTasks('grunt-contrib-jshint'); //grunt.loadNpmTasks('grunt-vows-runner'); grunt.loadNpmTasks('grunt-vows'); grunt.registerTask('default', ['jshint', 'vows']); };