UNPKG

grunt-sourcemap-modifier

Version:

SourceMap modifier to correct paths

35 lines (32 loc) 633 B
module.exports = function(grunt) { grunt.initConfig({ lint: { files: ['grunt.js', 'tasks/**/*.js'] }, watch: { files: '<config:lint.files>', tasks: 'default' }, jshint: { options: { curly: true, eqeqeq: true, immed: true, latedef: true, newcap: true, noarg: true, sub: true, undef: true, boss: true, eqnull: true, node: true, es5: true }, globals: {} } }); // Load local tasks. grunt.loadTasks('tasks'); // Default task. grunt.registerTask('default', 'lint'); };