I’ve done a fresh install of ember-cli and created my new app. I then installed ember-cli-sass, and moved all my .scss files to the app/styles folder, with the main file being app.scss and all others prefixed with _.
When I launch with ember serve, I get the warning: Could not find watchman, falling back to NodeWatcher for file system events, but I’m not sure if this is directly related to my problem.
The problem is that the app.css file is not created in dist/assets. So how do I go about debugging this?
Edit: I’ve also added this to my Brocfile.js, then run ember build
:
var compileSass = require('broccoli-sass');
var app = new EmberApp();
var sassImportPaths = [
'app/styles'
];
var appCss = compileSass(sassImportPaths, './app/styles/app.scss', './assets/app.css');