Skip to content
This repository has been archived by the owner on May 15, 2023. It is now read-only.

Commit

Permalink
Fix mapping prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
soney committed Dec 9, 2013
1 parent e16592b commit 200d908
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ module.exports = function(grunt) {
report: 'gzip',
sourceMapIn: "build/cjs.js.map",
sourceMap: "build/cjs.min.js.map",
sourceMappingURL: "cjs.min.js.map"
sourceMappingURL: "cjs.min.js.map",
sourceMapPrefix: 1
},
src: "build/cjs.js", // Use concatenated files
dest: "build/cjs.min.js"
Expand All @@ -33,7 +34,8 @@ module.exports = function(grunt) {
banner: '/*<%= pkg.name %> - v<%= pkg.version %>*/\n',
sourceMap: "build/cjs.min.js.map",
sourceMappingURL: "cjs.min.js.map",
sourceMapRoot: '..'
sourceMapRoot: '..',
sourceMapPrefix: 1
},
src: "build/cjs.js", // Use concatenated files
dest: "build/cjs.min.js"
Expand Down

0 comments on commit 200d908

Please sign in to comment.