X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/b38b01fe2b2e52d3ad68d412a05c112b73886c95..b5db2e60c7ee08a0ccd0b8ded776730996c46aeb:/Gruntfile.js diff --git a/Gruntfile.js b/Gruntfile.js index 5c85ee0..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' } } }, @@ -25,7 +32,8 @@ module.exports = function(grunt) { options: { paths: [''], cleancss: true, - relativeUrls: true + relativeUrls: true, + rootpath: 'src/editor/styles/' }, files: less_files, },