22 lines
567 B
JavaScript
Raw Normal View History

2019-08-31 20:51:14 -07:00
'use strict';
const EmberAddon = require('ember-cli/lib/broccoli/ember-addon');
const nodeSass = require('node-sass');
2019-08-31 20:51:14 -07:00
module.exports = function(defaults) {
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();
};