Meteoric Demo—File Not Found on SCSS @import?

I’m running on OS X and just starting out with Meteor. The Leaderboard demo runs correctly. However, if I clone the Meteoric Demo from Git and run it, I get this error:

While building the application:
/Applications/DorothyCareWebApp/client/stylesheets/app.scss:4:9: Scss
compiler error: file to import not found or unreadable:
.meteor/local/build/programs/server/assets/packages/meteoric_ionic-sass/ionic
Current dir: /Applications/DorothyCareWebApp/client/stylesheets/

How can I correct this?

Thanks very much in advance to all for any info.

It probably needs to be updated for Meteor 1.2 (I mean Meteoric scss package) also take a look here: https://github.com/fourseven/meteor-scss/issues/118

1 Like

Hi
This is a common issue fixed by simply retyping the whole source :slight_smile: and remember to build for desktop before building for ios/android the first time you run the project.

@tejpen What is the command to build for desktop only?

@juliancwirko I ran:

meteor update

and

meteor update fourseven:scss

…but I am still getting the same error. What am I missing?

I mean that probably this package: https://github.com/meteoric/ionic-sass needs update. I think you could create a new issue: https://github.com/meteoric/ionic-sass/issues

1 Like

Thanks! I got it working by following these instructions:

meteor remove fourseven:scss
meteor remove meteoric:ionic-sass
meteor remove meteoric:ionicons-sass
meteor add fourseven:scss@2.0.0
meteor add meteoric:ionic-sass
meteor add meteoric:ionicons-sass

…found here:

1 Like