UNPKG

350 BJavaScriptView Raw
1var process = require('./index').process;
2
3console.warn(
4 'DEPRECATION WARNING: Transform reactify/undoubted is deprecated,\n' +
5 ' pass -x option instead: browserify -t [ reactify -x coffee ] ...\n' +
6 ' or via API: browserify(..).transform({extension: "coffee"}, reactify)'
7);
8
9module.exports = function(file) {
10 return process(file, true);
11};