Skip to content
This repository was archived by the owner on Dec 26, 2019. It is now read-only.

Commit c42aaec

Browse files
committed
Use app.bowerDirectory instead of hardcoded bower_components
1 parent cc55663 commit c42aaec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Brocfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ var app = new EmberAddon();
1818
// please specify an object with the list of modules as keys
1919
// along with the exports of each module as its value.
2020

21-
app.import('bower_components/bootstrap/dist/css/bootstrap.css');
22-
app.import('bower_components/bootstrap/dist/css/bootstrap.css.map', {
21+
app.import(app.bowerDirectory + '/bootstrap/dist/css/bootstrap.css');
22+
app.import(app.bowerDirectory + '/bootstrap/dist/css/bootstrap.css.map', {
2323
destDir: 'assets'
2424
});
2525

26-
app.import('bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.de.js');
26+
app.import(app.bowerDirectory + '/bootstrap-datepicker/js/locales/bootstrap-datepicker.de.js');
2727

2828
module.exports = app.toTree();

0 commit comments

Comments
 (0)