Jekyll and Sass sourcemaps -
Jekyll and Sass sourcemaps -
i'm using gulp-ruby-sass compile css , generate source maps site built on jekyll. source maps beingness generated. when inspect style, sass partial identified source of style. when click on filename, i'm taken empty window. need entire scss directory copied _site directory when site generated. jekyll ignores files prefixed underscore, sass partials automatically excluded. i've tried adding, scss, scss/_sass_partial.scss, , scss/**/*.scss include property of jekyll's _config.yml. property supposed forcefulness inclusion of files otherwise automatically excluded such .htaccess. not work sass partials. jekyll includes partials if underscore removed. know way of dealing this?
this work :
include: - _sass_partial.scss but can add together gulp task :
gulp.task('copy_sass', function(){ gulp.src('./sass/*.scss') .pipe(gulp.dest('./_site/sass')) }); sass jekyll
Comments
Post a Comment