began work on inspection console to visualize metric requests, and other useful troubleshooting info and inspection

This commit is contained in:
Torkel Ödegaard
2014-08-10 14:35:56 +02:00
parent 21b7c6a2c0
commit eb9a7267bd
14 changed files with 153 additions and 4 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
// Lint and build CSS
module.exports = function(grunt) {
grunt.registerTask('default', ['jscs', 'jshint', 'less:src', 'concat:cssDark', 'concat:cssLight']);
grunt.registerTask('css', ['less:src', 'concat:cssDark', 'concat:cssLight']);
grunt.registerTask('default', ['jscs', 'jshint', 'css']);
grunt.registerTask('test', ['default', 'karma:test']);
};
+11
View File
@@ -0,0 +1,11 @@
module.exports = function(config) {
return {
css: {
files: [ '<%= srcDir %>/css/**/*.less' ],
tasks: ['css'],
options: {
spawn: false
}
}
};
};