I look around and it seems that the problem is quite common, but I can’t find a solution for my business.
I created my first Compass project after these instructions
My folder project is called sass-test
I have css files
- screen.css
- print.css
- ie.css
- config.rb
My config.rb inside is configured this way
http_path = "/" css_dir = "stylesheet" sass_dir = "sass" images_dir = "images" javascripts_dir = "javascripts"
Then I have a sass folder with:
- screen.scss
- print.scss
- ie.scss
I make some changes to my screen.scss file and then compile it using the terminal providing this command
compass compile sass-test/sass/screen.scss
Now it happens that COMPASS automatically creates new folders
- style sheets
- test
- bicker. In this folder, Compass compiles
screen.css
I do not want my screen.css file to be compiled, but I want it to be inside my sass test, where the screen.css file already exists.
How can i achieve this? I also look through this article for an article that reads all the comments, but I cannot understand this problem.
I also tried to compile it using the liveReload preprocessor setting the output folder, but it still compiles screen.css on the “wrong” path.
how can i give compass instructions to compile my screen.css file in my sass-test?
Here is the print screen 
thanks
source share