DaftMonk / angular-tour

AngularJS directive for giving an interactive tour of your website.
http://daftmonk.github.io/angular-tour/
MIT License
608 stars 137 forks source link

Bower main attribute is missing reference to css file #64

Closed david-meza closed 8 years ago

david-meza commented 8 years ago

This should be an easy fix. I'll try to do the PR myself. Essentially the bower.json file should be changed to

"main": [
  "./dist/angular-tour-tpls.min.js",
  "./dist/angular-tour.css"
],

as opposed to what it is now

"main": "./dist/angular-tour-tpls.min.js",

Why is this important? When you run automated tasks like Grunt's wiredep it looks at this attribute to automatically generate your link and script tags, and the absence of it forces you to manually add the missing link tag every time a task runs.

booleanbetrayal commented 8 years ago

Thanks!

david-meza commented 8 years ago

Merge #65 fixes this.