Skip to content

Commit 1b46793

Browse files
committed
Added missing semicolon
1 parent 14c4304 commit 1b46793

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/virtual.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function VirtualModulesPlugin(compiler) {
3434
this._virtualFiles[file] = { stats: stats, contents: contents };
3535
setData(this._statStorage, file, [null, stats]);
3636
setData(this._readFileStorage, file, [null, contents]);
37-
compiler.fileTimestamps.set(file, +stats.mtime)
37+
compiler.fileTimestamps.set(file, +stats.mtime);
3838
};
3939
}
4040

0 commit comments

Comments
 (0)