We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7befd5 commit 59324ceCopy full SHA for 59324ce
packages/snap/src/watcher.ts
@@ -62,7 +62,7 @@ export class Watcher {
62
return
63
}
64
65
- const config = await getStepConfig(path, this.dir).catch((err) => console.error(err))
+ const config = await getStepConfig(path, this.lockedData.baseDir).catch((err) => console.error(err))
66
67
if (!config) {
68
@@ -79,7 +79,7 @@ export class Watcher {
79
invalidate(path)
80
81
82
- const config = await getStepConfig(path, this.dir).catch((err) => {
+ const config = await getStepConfig(path, this.lockedData.baseDir).catch((err) => {
83
console.error(err)
84
})
85
0 commit comments