From 6e074188d4aadfe02e428a365f628f4d2e871327 Mon Sep 17 00:00:00 2001 From: Chris Adams Date: Mon, 25 Mar 2013 14:22:09 -0400 Subject: [PATCH] Grunt: generate source maps when compressing --- Gruntfile.js | 5 ++++- package.json | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 8bdadd0d..ff430a9a 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -79,7 +79,10 @@ module.exports = function(grunt) { }, uglify: { options: { - preserveComments: "some" + preserveComments: "some", + sourceMap: function (filename) { + return filename.replace(/\.js$/, '.js.map'); + } }, openseadragon: { src: [ distribution ], diff --git a/package.json b/package.json index 3d84b367..16464e41 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "grunt-contrib-compress": "~0.5.0", "grunt-contrib-concat": "~0.1.2", "grunt-contrib-jshint": "~0.1.1", - "grunt-contrib-uglify": "~0.1.1", + "grunt-contrib-uglify": "~0.2.0", "grunt-contrib-qunit": "~0.2.0", "grunt-contrib-connect": "~0.1.2", "grunt-contrib-watch": "~0.2.0",