Closed trev closed 9 years ago
I had the same problem. "assets" is hard-coded in the npm. A hack is to change the js file:
node_modules/ember-cli-compass-compiler/compass.js:
Compass.prototype.compile = function(srcDir, destDir, options) {
var cssDir = path.join(destDir, 'stuff');
or a better approach would be:
Brocfile.js:
var app = new EmberApp({
compassOptions: {
cssDir: 'stuff'
}
});
node_modules/ember-cli-compass-compiler/compass.js:
Compass.prototype.compile = function(srcDir, destDir, options) {
var cssDir = path.join(destDir, options.cssDir !== undefined ? options.cssDir : 'assets');
Same happening here. Thanks for the tip @markhorgan
outputPaths
are supported beginning from 0.2.0
release.
I've got something like this in my Brocfile.js:
Everything BUT the app.css will build into
dist/stuff
. The app.css still goes todist/assets
.