javascript - node - js browserify
Generando mapas fuente desde browserify usando grunt (2)
De forma predeterminada, browserify genera mapas de origen en línea como un comentario en bundle.js
. El archivo README de Browserify sugiere utilizar exorcistas si desea extraerlos en un archivo separado:
$ browserify main.js --debug | exorcist bundle.js.map > bundle.js
Y grunt-extract-sourcemap enrolla esto en una tarea grunt-extract-sourcemap
He seguido las instrucciones aquí: https://www.npmjs.org/package/grunt-browserify , para probar y configurar mapas fuente para browserify en grunt Las opciones para browserify en mi gruntfile son:
browserify: {
options: {
bundleOptions : {
debug: true
}
},
dist: {
files: {
"public/client.bundle.js": ["bundle.js"]
}
}
}
La generación de bundle.js ocurre sin problemas, sin embargo, la generación del mapa de origen no ocurre. ¿Hay algo malo con mis opciones de grunt-browserify?
Gracias por mirar.
use browserifyOptions en lugar de bundleOptions
browserify: {
options: {
browserifyOptions: {
debug: true
}
},
...
}