UNPKG

d3.chart

Version:

A framework for creating reusable charts with D3.js

21 lines (18 loc) 342 B
module.exports = function(grunt) { "use strict"; grunt.config.set("browserify", { "test-app": { files: { "test/sample-cjs-app/packaged.js": [ "test/sample-cjs-app/main.js" ] }, options: { alias: { "d3.chart": "./test/d3.chart.test-build.js" } } } }); grunt.loadNpmTasks("grunt-browserify"); };