Skip to content

Commit

Permalink
Use a boolean instead of a string for sourceMapContents
Browse files Browse the repository at this point in the history
  • Loading branch information
johnraz committed May 21, 2015
1 parent 315a356 commit da3efda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ process.on('uncaughtException', function(err) {
options.mangle = !options['no-mangle'];

if (options['inline-source-maps']){
options.sourceMapContents = 'inline';
options.sourceMapContents = true;
}

var bArgs = options.args.splice(1);
Expand Down

0 comments on commit da3efda

Please sign in to comment.