Skip to content

Commit

Permalink
fix #1658; useStale defaults to false
Browse files Browse the repository at this point in the history
  • Loading branch information
mbostock committed Sep 13, 2024
1 parent 2d5dcda commit 83083a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/loader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ abstract class AbstractLoader implements Loader {
this.targetPath = targetPath;
}

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

0 comments on commit 83083a2

Please sign in to comment.