getchopstick / chopstick-boilerplate

Chopstick boilerplate
http://getchopstick.com
Other
106 stars 22 forks source link

Use Jekyll for .scss > .css processing #131

Closed Dietr closed 8 years ago

Dietr commented 8 years ago

Because we use a gulp task to process the sass, you have to commit the generated CSS in order to host chopstick boilerplate on github pages. This seems a bit complicated and I see no real reason (except maybe minification and sourcemaps) why we should use a gulp task for this.

Jekyll supports Sass: https://jekyllrb.com/docs/assets/ Autoprefixer is also not a problem if we use the octopress plugin.

See config example below:


sass:
  sass_dir: _scss
  style: compressed
gems:
  - octopress-autoprefixer
xavez commented 8 years ago

I think source maps alone is a great reason to keep using it :-).

Dietr commented 8 years ago

I also just discovered that Github pages does not support the autoprefixer plugin so I'll close this issue. Maybe in the future :-)