gulp-usemin
Advanced tools
Comparing version
@@ -17,3 +17,3 @@ module.exports = function(options) { | ||
var blocks = blocksBuilder(file, options); | ||
htmlBuilder(file, blocks, options, this.push.bind(this)); | ||
htmlBuilder(file, blocks, options, this.push.bind(this), callback); | ||
} catch(e) { | ||
@@ -20,0 +20,0 @@ this.emit('error', e); |
@@ -1,2 +0,2 @@ | ||
module.exports = function(file, blocks, options, push) { | ||
module.exports = function(file, blocks, options, push, callback) { | ||
var path = require('path'); | ||
@@ -46,4 +46,6 @@ var gutil = require('gulp-util'); | ||
Q.all(promises).then(function() { | ||
pipeline(name, [createFile(name, html.join(''))], options && options['html'], push); | ||
pipeline(name, [createFile(name, html.join(''))], options && options['html'], function(file) { | ||
callback(null, file); | ||
}); | ||
}); | ||
}; |
{ | ||
"name": "gulp-usemin", | ||
"version": "0.3.10", | ||
"version": "0.3.11", | ||
"description": "Replaces references to non-optimized scripts or stylesheets into a set of HTML files (or any templates/views).", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -171,2 +171,5 @@ # gulp-usemin | ||
#####0.3.11 | ||
- fixed #88 | ||
#####0.3.10 | ||
@@ -173,0 +176,0 @@ - fixed uppercase Q bug (on case-sensetive file systems) |
38183
0.25%628
0.32%241
1.26%