wesm87/ember-datepicker

new to ember-cli addons, but...

erbmicha opened this issue · 1 comments

Shouldn't this not be in the Brocfile.js?

app.import('vendor/bootstrap/dist/css/bootstrap.css');

Assumes the bootstrap addon is installed right?

Not really. Its in the Brocfile because I quite like bootstrap styling and I use it for the ember-cli app that encapsulates the addon. That styling won't carry over to the add-on because its not in the lib/ember-cli-datepicker.js file. You'll see there are files included there that are also included in the Brocfile.js (the app.import statements that appear before the massive comment block).

So, if you checkout the addon and run ember serve it'll complain that you don't have bootstrap installed (although it is in the bower file, which should be run first). It is used in the /templates/index.hbs file. Otherwise it's not needed at all.