From 71dfd200e77f2fd50dc2129148caa5090d039702 Mon Sep 17 00:00:00 2001 From: Peter Cottle Date: Sun, 9 Dec 2012 21:14:28 -0800 Subject: [PATCH] grunt task also --- grunt.js | 27 +-------------------------- 1 file changed, 1 insertion(+), 26 deletions(-) diff --git a/grunt.js b/grunt.js index e24e02cf..899f29a3 100644 --- a/grunt.js +++ b/grunt.js @@ -1,32 +1,10 @@ /*global module:false*/ module.exports = function(grunt) { - // eventually have sound...? - grunt.registerTask('compliment', function() { - grunt.log.writeln('You are awesome!'); - }); - grunt.initConfig({ lint: { files: ['grunt.js', 'src/*.js'] }, - /* - jasmine_node: { - specNameMatcher: "./spec", // load only specs containing specNameMatcher - projectRoot: ".", - requirejs: false, - forceExit: true, - jUnit: { - report: false, - savePath : "./build/reports/jasmine/", - useDotNotation: true, - consolidate: true - } - }, - watch: { - files: '', - tasks: 'lint' - },*/ jshint: { options: { curly: true, @@ -55,9 +33,6 @@ module.exports = function(grunt) { } }); - //grunt.loadNpmTasks('grunt-jasmine-node'); - // Default task. - grunt.registerTask('default', 'lint jasmine_node'); + grunt.registerTask('default', 'lint'); }; -