Skip to content

Instantly share code, notes, and snippets.

@exdeniz
Created March 31, 2015 14:40
Show Gist options
  • Save exdeniz/17c92cceb14f339aa599 to your computer and use it in GitHub Desktop.
Save exdeniz/17c92cceb14f339aa599 to your computer and use it in GitHub Desktop.
Gulp Task for Base64
gulp.task('stylusURI', function() {
gulp.src('./assets/b/blocks.uri.styl')
.pipe(stylus()) // собираем stylus
.pipe(cssBase64({
baseDir: "../../assets/icons",
}))
.pipe(prefix())
.pipe(gulp.dest('./public/css/')) // записываем css
.pipe(reload({
stream: true
}));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment