gulp-sass/index.js
Vincent Prouillet 1dd861e4d6 Rewrite gulp-sass to be a very light wrapper
Simply pass everything to node-sass and just hand
back the results to gulp.
Removed custom options like success/failure cb
and sync rendering.

Missing:
 -  gulp-sourcemaps support + test
2015-03-23 22:30:52 +00:00

39 lines
990 B
JavaScript

var gutil = require("gulp-util");
var through = require("through2");
var assign = require("object-assign");
var path = require('path');
var sass = require("node-sass");
var PLUGIN_NAME = 'gulp-sass';
module.exports = function(options) {
return through.obj(function(file, enc, cb) {
if (file.isNull()) {
return cb(null, file);
}
if (file.isStream()) {
return cb(new gutil.PluginError(PLUGIN_NAME, 'Streaming not supported'));
}
if (path.basename(file.path).indexOf('_') === 0) {
return cb();
}
var opts = assign({}, options);
opts.file = file.path;
var callback = function(error, obj) {
if (error) {
return cb(new gutil.PluginError(
PLUGIN_NAME, error.message + ' on line ' + error.line + ' in ' + error.file
));
}
file.contents = new Buffer(obj.css);
file.path = gutil.replaceExtension(file.path, '.css');
cb(null, file);
};
sass.render(opts, callback);
});
};