TomNeyland / angular-dc

AngularJS directives for dc.js
http://tomneyland.github.io/angular-dc/
MIT License
112 stars 58 forks source link

Dependencies #54

Closed cskiwi closed 8 years ago

cskiwi commented 8 years ago

hi,

I see that you do the following in your code module.exports = require("./crossfilter").crossfilter but I'm using some gulp tasks to create one vendor.js that contains all code

so could you change it that it doens't look for the file, but for the code being loaded?

cskiwi commented 8 years ago

Aight found the problem, the problem was that it wasn't including crossfilter

by adding

 "overrides": { 
    "crossfilter": {
        "main": [
            "./crossfilter.js"
        ]
    }
  }

to my bower.json it included the crossfilter file