editor: refactoring canvas markup
[fnpeditor.git] / Gruntfile.js
index 4f15a55..a97d77c 100644 (file)
@@ -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'
             }
           }
         },