Remove unnecessary backtick in AmdMainTemplatePlugin

This commit is contained in:
Ali BARIN 2017-03-02 14:40:09 +01:00
parent e15044f3f5
commit 9c36c08a69
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ class AmdMainTemplatePlugin {
mainTemplate.plugin("hash", (hash) => {
hash.update("exports amd");
hash.update(`${this.name}`);
hash.update(this.name);
});
}
}