remove jsx-transform

not used anymore since we're now using reactify
This commit is contained in:
Riku Rouvila
2015-02-27 00:37:51 +02:00
parent a58ff5aab9
commit 7980e5aba1

View File

@@ -1,14 +0,0 @@
'use strict';
var through = require('through2');
var jsx = require('jsx-transform');
module.exports = function(file) {
return through(function (buf, enc, next) {
this.push(jsx.transform(buf.toString('utf8'), {
ignoreDocblock: true,
jsx: 'h'
}));
next();
});
};