Skip to content

Commit 83083a2

Browse files
committed
fix #1658; useStale defaults to false
1 parent 2d5dcda commit 83083a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/loader.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ abstract class AbstractLoader implements Loader {
389389
this.targetPath = targetPath;
390390
}
391391

392-
async load({useStale = true}: LoadOptions = {}, effects = defaultEffects): Promise<string> {
392+
async load({useStale = false}: LoadOptions = {}, effects = defaultEffects): Promise<string> {
393393
const loaderPath = join(this.root, this.path);
394394
const key = join(this.root, this.targetPath);
395395
let command = runningCommands.get(key);

0 commit comments

Comments
 (0)