File tree 1 file changed +1
-2
lines changed
1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -159,6 +159,7 @@ function ignorePatternToMinimatch(pattern: string): string {
159
159
}
160
160
161
161
function pathsToPatterns ( paths : string [ ] ) : string [ ] {
162
+ // TODO: Does not support `~/` paths.
162
163
return paths . map ( p => ( p === '.' ? '**/*' : p ) )
163
164
}
164
165
@@ -207,7 +208,6 @@ export async function getPackageFiles(
207
208
) : Promise < string [ ] > {
208
209
debugLog ( `Globbed resolving ${ inputPaths . length } paths:` , inputPaths )
209
210
210
- // TODO: Does not support `~/` paths
211
211
const entries = await globWithGitIgnore ( pathsToPatterns ( inputPaths ) , {
212
212
cwd,
213
213
socketConfig : config
@@ -239,7 +239,6 @@ export async function getPackageFilesFullScans(
239
239
) : Promise < string [ ] > {
240
240
debugLog ( `Globbed resolving ${ inputPaths . length } paths:` , inputPaths )
241
241
242
- // TODO: Does not support `~/` paths
243
242
const entries = await globWithGitIgnore ( pathsToPatterns ( inputPaths ) , {
244
243
cwd
245
244
} )
You can’t perform that action at this time.
0 commit comments