Quite good looking graph derived from d3.js http://c3js.org

23 lines
498 B

11 years ago
module.exports = (grunt) ->
require('load-grunt-tasks') grunt, pattern: 'grunt-contrib-*'
11 years ago
grunt.initConfig
jshint:
c3: 'c3.js'
spec: 'spec/*.js'
options:
jshintrc: '.jshintrc'
11 years ago
jasmine:
c3:
src: 'c3.js'
options:
specs: 'spec/*.js'
11 years ago
uglify:
c3:
files:
'c3.min.js': 'c3.js'
11 years ago
grunt.registerTask 'default', ['jshint', 'jasmine', 'uglify']