equal
deleted
inserted
replaced
|
1 /* global require, module */ |
|
2 var EmberApp = require('ember-cli/lib/broccoli/ember-app'); |
|
3 |
|
4 |
|
5 module.exports = function(defaults) { |
|
6 |
|
7 var app = new EmberApp(defaults, { |
|
8 // Add options here |
|
9 sassOptions: { |
|
10 includePaths: [ |
|
11 'app/styles', |
|
12 '../src/resources/assets/sass', |
|
13 '../src/vendor/bower_components/bootstrap-sass/assets/stylesheets' |
|
14 ], |
|
15 } |
|
16 }); |
|
17 |
|
18 // Use `app.import` to add additional libraries to the generated |
|
19 // output files. |
|
20 // |
|
21 // If you need to use different assets in different |
|
22 // environments, specify an object as the first parameter. That |
|
23 // object's keys should be the environment name and the values |
|
24 // should be the asset to use in that environment. |
|
25 // |
|
26 // If the library that you are including contains AMD or ES6 |
|
27 // modules that you would like to import into your application |
|
28 // please specify an object with the list of modules as keys |
|
29 // along with the exports of each module as its value. |
|
30 |
|
31 return app.toTree(); |
|
32 }; |