gulp, browserify, maps?
问题 How do I enable source maps? I'm doing this: var browserify = require("gulp-browserify") gulp.task("compile:client", function() { gulp.src("src/client/app.coffee", { read: false }) .pipe(browserify({ debug: true // THIS DOES NOTHING :( transform: ['coffeeify'], extensions: ['.coffee'] })) .pipe(rename('app.js')); }); Ouch... for some reason on the github page for gulp-browserify it says: PLUGIN IS BLACKLISTED. I don't get it... how the heck I'm suppose to use browserify with my coffeescript