aboutsummaryrefslogtreecommitdiff
path: root/node_modules/webpack/lib/RawModule.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/webpack/lib/RawModule.js')
-rw-r--r--node_modules/webpack/lib/RawModule.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/node_modules/webpack/lib/RawModule.js b/node_modules/webpack/lib/RawModule.js
index 3d29cdb98..d937cafc0 100644
--- a/node_modules/webpack/lib/RawModule.js
+++ b/node_modules/webpack/lib/RawModule.js
@@ -47,4 +47,8 @@ module.exports = class RawModule extends Module {
return new RawSource(this.sourceStr);
}
+ updateHash(hash) {
+ hash.update(this.sourceStr);
+ super.updateHash(hash);
+ }
};