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 f2084d7 commit 2da2d15Copy full SHA for 2da2d15
1 file changed
packages/intent/src/discovery/walk.ts
@@ -126,7 +126,8 @@ export function createDependencyWalker(opts: CreateDependencyWalkerOptions) {
126
if (!opts.tryRegister(dirPath, 'unknown')) continue
127
128
const pkgJson = opts.readPkgJson(dirPath)
129
- const pkgName = typeof pkgJson?.name === 'string' ? pkgJson.name : 'unknown'
+ const pkgName =
130
+ typeof pkgJson?.name === 'string' ? pkgJson.name : 'unknown'
131
walkDeps(dirPath, pkgName)
132
}
133
0 commit comments