Skip to content

Commit 759cfaf

Browse files
committed
Fix build to hardcode the name of the files instead of taking the name
from package.json
1 parent cbf0a05 commit 759cfaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ module.exports = function(grunt) {
5151
});
5252
key.sort();
5353

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

5757
return dict;

0 commit comments

Comments
 (0)