Reputation: 39018
I'm using SASS, and have Codekit installed.With Codekit I tell the scss files to compress and compile into css inside of the ../css folder.
css
style.css
sass
style.css
style.scss
Something somewhere is telling that scss file to also export out a css file into my sass folder.
Codekit is setup correctly:
Output: (there should be no css files here)
Anyone else run into this issue?
What I've found out so far:
The problem does not seem to have anything to do with Codekit, cause the annoying .css
file will get generated inside of my SASS
folder even with Codekit uninstalled.
I use to have LiveReload and LiveStyle installed, but I've removed both of those items.
I started a brand new project in a different folder, so far have not been able to reproduce issue, however still experience bug with my real project.
PyCharm seems to be generating the css files! Looking into how to turn that off now Thank to Katie
Upvotes: 0
Views: 1794
Reputation: 1830
Rename style.scss to _style.scss it will solve your problem. smae thing is done with normalize.scss and reset.scss you can see.
Upvotes: 0
Reputation: 13843
Since it's happening without Codekit as a factor, you may have something odd in your config.rb file. In the root directory of your project (probably the directory that contains the css and sass directories), open the file config.rb in your text editor (Sublime Text). Look for these lines:
css_dir = something
sass_dir = something
These lines tell Sass where to put the resulting files. It sounds like you want it like this:
css_dir = "css"
sass_dir = "sass"
Upvotes: 3