remove jsx from valid extensions since we're now using acorn

This commit is contained in:
Sebastian McKenzie
2014-10-19 14:21:27 +11:00
parent 1f274a3b95
commit a75248d2d2

View File

@@ -108,7 +108,7 @@ exports.errorWithNode = function (node, msg) {
exports.canCompile = function (filename) {
var ext = path.extname(filename);
return _.contains([".js", ".es6", ".jsx"], ext);
return _.contains([".js", ".es6"], ext);
};
exports.sourceMapToComment = function (map) {