From: Aleksander Ɓukasz Date: Mon, 30 Dec 2013 14:22:34 +0000 (+0100) Subject: build: generate js source map X-Git-Url: https://git.mdrn.pl/fnpeditor.git/commitdiff_plain/d721cbe5947c8bc75b2e4b0e9602e0e3d45dbbcb build: generate js source map --- diff --git a/Gruntfile.js b/Gruntfile.js index ca08c79..5427659 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -17,7 +17,13 @@ module.exports = function(grunt) { mainConfigFile: 'src/editor/entrypoint.js', out: build_output_dir + '/rng.js', name: 'entrypoint', - include: ['libs/require'] + include: ['libs/require'], + generateSourceMaps: true, + + // The following two settings are required for source maps to work, + // see: http://requirejs.org/docs/optimization.html#sourcemaps + preserveLicenseComments: false, + optimize: 'uglify2' } } },