2019-08-31 20:51:14 -07:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const EmberAddon = require('ember-cli/lib/broccoli/ember-addon');
|
2020-08-26 15:44:50 -07:00
|
|
|
const nodeSass = require('node-sass');
|
2019-08-31 20:51:14 -07:00
|
|
|
|
|
|
|
module.exports = function(defaults) {
|
2020-08-26 15:44:50 -07:00
|
|
|
const app = new EmberAddon(defaults, {
|
|
|
|
sassOptions: {
|
|
|
|
implementation: nodeSass
|
|
|
|
}
|
2019-08-31 20:51:14 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
/*
|
|
|
|
This build file specifies the options for the dummy test app of this
|
|
|
|
addon, located in `/tests/dummy`
|
|
|
|
This build file does *not* influence how the addon or the app using it
|
|
|
|
behave. You most likely want to be modifying `./index.js` or app's build file
|
|
|
|
*/
|
|
|
|
|
|
|
|
return app.toTree();
|
|
|
|
};
|