1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
Disable grunt tasks using wrappers not packaged for Debian
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -39,7 +39,7 @@
nospawn: true
}
}
- },
+ }/*,
jasmine : {
src : 'src/*.js',
options : {
@@ -51,16 +51,16 @@
report: 'reports/coverage'
}
}
- }
+ }*/
});
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
- grunt.loadNpmTasks('grunt-contrib-watch');
- grunt.loadNpmTasks('grunt-contrib-jshint');
- grunt.loadNpmTasks('grunt-contrib-jasmine');
+ //grunt.loadNpmTasks('grunt-contrib-watch');
+ //grunt.loadNpmTasks('grunt-contrib-jshint');
+ //grunt.loadNpmTasks('grunt-contrib-jasmine');
// Default task(s).
- grunt.registerTask('default', ['jshint', 'concat', 'uglify', 'jasmine']);
+ grunt.registerTask('default', ['concat', 'uglify']);
-};
\ No newline at end of file
+};
|