UNPKG

nvd3

Version:

A reusable charting library written in d3.js

18 lines (17 loc) 421 B
module.exports = function(grunt) { grunt.initConfig({ browserify: { js: { src: './nodeTest.js', dest: './build/nodeTest.js', }, }, copy: { all: { src: ['../../build/nv.d3.css'], dest: './build/nv.d3.css', }, }, }); grunt.loadNpmTasks('grunt-browserify'); grunt.loadNpmTasks('grunt-contrib-copy'); grunt.registerTask('default', ['browserify', 'copy']); };