Skip to content

Commit

Permalink
bundle name hash-key generation is not environment independent #2001 (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
tripodsan authored and DeMoorJasper committed Sep 12, 2018
1 parent 88d5fbf commit 47c3519
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Asset.js
Expand Up @@ -235,7 +235,7 @@ class Asset {
generateBundleName() {
// Generate a unique name. This will be replaced with a nicer
// name later as part of content hashing.
return md5(this.name) + '.' + this.type;
return md5(this.relativeName) + '.' + this.type;
}

replaceBundleNames(bundleNameMap) {
Expand Down

0 comments on commit 47c3519

Please sign in to comment.