UNPKG

appmech-logger

Version:
22 lines (21 loc) 596 B
module.exports = function (grunt) { grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), watch: { files: ['lib/*.js', 'test/*.js'], tasks: ['jshint'] }, jshint: { files: ['lib/*.js', 'test/*.js'], options: { browser: false, globals: { require: true, exports: true } } } }); grunt.loadNpmTasks('grunt-contrib-jshint'); grunt.registerTask('default', ['watch']); };