took me a while to find out what was going on, but it was crashing node without a warning when the default paths did not exist.. this is my solution but would be great to overcome this, also i needed to include the project path, even though it isn't where config.rb is:
app.configure(function() {
app.use(compass({
project: path.join(__dirname, '/app'),
config_file: 'config.rb'
}));
});
took me a while to find out what was going on, but it was crashing node without a warning when the default paths did not exist.. this is my solution but would be great to overcome this, also i needed to include the project path, even though it isn't where config.rb is: