epochjs / epoch

A general purpose, real-time visualization library.
http://epochjs.github.io/epoch
MIT License
4.97k stars 278 forks source link

Bower wiredep fails because of bad path at main. #176

Closed rexscaria closed 9 years ago

rexscaria commented 9 years ago

The grunt wiredep fails because the main has an absolute path.

"main": [
    "/epoch.min.js",
    "/epoch.min.css"
  ],

Changing this to

"main": [
    "epoch.min.js",
    "epoch.min.css"
  ],

works.

rsandor commented 9 years ago

Seems to be a duplicate of #171

rsandor commented 9 years ago

Fixed by #168