Updating grunt to handle HAML correctly.
This commit is contained in:
parent
643a2eb4ab
commit
a419da0c30
4
grunt.js
4
grunt.js
|
@ -121,8 +121,10 @@ module.exports = function(grunt) {
|
||||||
args: ["--unix-newlines", "--no-escape-attrs", "--double-quote-attributes", src]
|
args: ["--unix-newlines", "--no-escape-attrs", "--double-quote-attributes", src]
|
||||||
};
|
};
|
||||||
grunt.utils.spawn(args, function(err, result) {
|
grunt.utils.spawn(args, function(err, result) {
|
||||||
|
if (err) console.log(err);
|
||||||
var out = path.basename(src, '.haml');
|
var out = path.basename(src, '.haml');
|
||||||
grunt.file.write(path.join(dest, out + '.html'), result.stdout);
|
grunt.file.write(path.join(dest, out + '.html'), result.stdout);
|
||||||
|
done();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -132,7 +134,7 @@ module.exports = function(grunt) {
|
||||||
dest = grunt.config([this.name, 'dest']);
|
dest = grunt.config([this.name, 'dest']);
|
||||||
|
|
||||||
async.forEachSeries(sources,
|
async.forEachSeries(sources,
|
||||||
function(path, cb) { grunt.helper('haml', path, dest, done); cb(); },
|
function(path, cb) { grunt.helper('haml', path, dest, cb) },
|
||||||
done);
|
done);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue