Skip to content

Instantly share code, notes, and snippets.

@apriendeau
Created January 23, 2014 08:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save apriendeau/8574904 to your computer and use it in GitHub Desktop.
Save apriendeau/8574904 to your computer and use it in GitHub Desktop.
@charset "UTF-8"; gulp-sass
/* styles.scss */
@charset "UTF-8";
/*! Continu App / Copyright 2013 */
@import
"import/variables",
"import/normalize",
"import/mixins",
"import/media-queries",
"import/core",
"import/animation";
/*end styles.scss*/
/*gulpfile.js*/
var gulp = require('gulp');
var sass = require('gulp-sass');
gulp.task('sass', function () {
gulp.src(['./public/sass/*.scss'])
.pipe(sass({includePaths: ['./public/sass'], errLogToConsole: true}))
.pipe(gulp.dest('./public/css'));
});
gulp.task('default', [ 'sass' ]);
/*gulpfile*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment