Skip to content

Commit e39e9c1

Browse files
committed
fix missing negation
1 parent ef7f142 commit e39e9c1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/NormalModule.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ class NormalModule extends Module {
509509
if(this.error) return true;
510510

511511
// always rebuild when module is not cacheable
512-
if(this.cacheable) return true;
512+
if(!this.cacheable) return true;
513513

514514
const highestFileDepTimestamp = this.getHighestTimestamp(
515515
this.fileDependencies, fileTimestamps);

0 commit comments

Comments
 (0)