Errors while building the application
Opened this issue · 8 comments
While building the application:
/home/janist/node/xxx/client/styles/styles.scss:1:9: Scss compiler error: file to import not found or unreadable: {reywood:bootstrap3-sass}/bootstrap
Current dir: /home/janist/node/xxx/client/styles/
Any ideas?
Please post the contents of your .meteor/packages
, .meteor/release
, and .meteor/versions
files. Putting them in a gist might work best.
Hi, I have the same problem. Error is:
/Users/johann/.rvm/gems/ruby-2.0.0-p353/bin/scss --no-cache --update adminstyles.scss:adminstyles.css
error adminstyles.scss (Line 1: File to import not found or unreadable: {reywood:bootstrap3-sass}/bootstrap.
Load paths:
)
Process finished with exit code 1
+1
+1
Apologies for not getting to this sooner. I'm unable to reproduce this error, so I'm going to need some help tracking it down. This is the project that I generally use to test the reywood:bootstrap3-sass package. I tried copying your packages
, release
, and versions
files into it, but to no avail. The app still works fine for me. If anyone can reproduce the bug using the above mentioned test project, it would be a great help.
I installed this package recently and had the same error.
When I installed as per the instructions, an older versions of the packages (fourseven:scss and reywood:bootstrap3-sass) was installed. So, there's possibility that older versions get installed for some reasons.
How I got it to work
I upgraded the packages to the latest versions
fourseven:scss@3.4.1
reywood:bootstrap3-sass@3.3.5_2
Then after this, I execute meteor update
Now, import is working as per instruction
@import '{reywood:bootstrap3-sass}/bootstrap';
This may be useful for someone with the same problem.
+1
This together with Meteor-Community-Packages/meteor-scss#120 makes it practically impossible to use the indented syntax together with bootstrap, as a downgrade of the scss package is needed.
Just adding that alanpachuau's comment above is the only thing that worked for me on Meteor 1.4.2.6.
It actually installed fourseven:scss 3.13.0 for some reason, but my app finally works again..