Skip to content

Commit

Permalink
Fix build to hardcode the name of the files instead of taking the name
Browse files Browse the repository at this point in the history
from package.json
  • Loading branch information
mattrobenolt committed Mar 7, 2015
1 parent cbf0a05 commit 759cfaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ module.exports = function(grunt) {
});
key.sort();

var dest = path.join('build/', key.join(','), '/<%= pkg.name %>.js');
var dest = path.join('build/', key.join(','), '/raven.js');
dict[dest] = coreFiles.concat(comb);

return dict;
Expand Down

0 comments on commit 759cfaf

Please sign in to comment.