appmech-logger
Version:
Logging library for appmechanix apps
22 lines (21 loc) • 596 B
JavaScript
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']);
};