Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Generating source maps from browserify using grunt

I have followed the instructions here: https://www.npmjs.org/package/grunt-browserify, to try and set up source maps for browserify on grunt. The options for browserify in my gruntfile are :

browserify: {
            options: {
                bundleOptions : {
                    debug: true 
                }
            },
            dist: {
                files: {
                    "public/client.bundle.js": ["bundle.js"]
                }
            }
        }

The generation of bundle.js happens without any issues, however the source map generation does not happen. Is there anything wrong with my grunt-browserify options.

Thanks for looking.

like image 685
Amal Antony Avatar asked May 30 '14 07:05

Amal Antony


2 Answers

use browserifyOptions instead of bundleOptions

browserify: {
   options: {
      browserifyOptions: {
         debug: true
      }
   },
   ...
}
like image 70
knpsck Avatar answered Nov 05 '22 05:11

knpsck


By default, browserify generates inline source maps as a comment in bundle.js. Browserify's README suggests using exorcist if you want to extract them to a separate file:

$ browserify main.js --debug | exorcist bundle.js.map > bundle.js 

And grunt-extract-sourcemap rolls this up in a grunt task

like image 15
hurrymaplelad Avatar answered Nov 05 '22 05:11

hurrymaplelad