X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/d394fab37158717445a7355b250ea881116a834a..41e72aeb83a24604c20aa896c18d9865955446c0:/Gruntfile.js diff --git a/Gruntfile.js b/Gruntfile.js index 4f15a55..a97d77c 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -12,11 +12,18 @@ module.exports = function(grunt) { requirejs: { compile: { options: { + useStrict: true, baseUrl: 'src/editor', 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: grunt.option('optimize') || 'uglify2' } } },