Build failed. The Broccoli Plugin: [BroccoliMergeTrees] failed with: Error: File not found: /addon.sass
I'm getting the message above after installing ember-calendar and ember-cli-sass to a fresh ember new project, and then adding the option sassOptions : { extension: 'sass' } to ember-cli-build.js. My original project uses .sass files for styling, so the option is necessary, but it seems to break the styling of the addon, which I am not attempting to use or import at all.
Changing the addon.scss file to addon.sass within the node module fixes the problem, but doesn't seem to be a good solution. Any help?
Build failed. The Broccoli Plugin: [BroccoliMergeTrees] failed with: Error: File not found: /addon.sass
I'm getting the message above after installing
ember-calendar
andember-cli-sass
to a freshember new
project, and then adding the optionsassOptions : { extension: 'sass' }
toember-cli-build.js
. My original project uses.sass
files for styling, so the option is necessary, but it seems to break the styling of the addon, which I am not attempting to use or import at all.Changing the
addon.scss
file toaddon.sass
within the node module fixes the problem, but doesn't seem to be a good solution. Any help?