poetic/ember-cli-cordova

compatibility with ember-cli-foundation-sass

Opened this issue · 0 comments

Hello! It seems that there is a mismatch somewhere between the ember-cli-cordova starter kit and ember-cli-foundation-sass about main scss file name/path:
right after ember-cli-foundation-sass installation there is an error in the console /Users/lessless/Code/js/foodraptor/tmp/caching-writer-dest-dir_TMEvRJ.tmp/app/styles/app.[scss|sass] does not exist
and if look onto that path there is a css file named after the application

Users/lessless/Code/js/foodraptor/tmp/caching-writer-dest-dir_TMEvRJ.tmp/
└── assets
    ├── foodraptor.css
    └── foodraptor.css.map

I tried to specify output in Brocfile

var app = new EmberApp({
  outputPaths: {
    app: {
      css: {
        'app': '/assets/foodraptor.css'
      }
    }
  }
});

but no success yet