Skip to content

Commit

Permalink
fidb.resolve should not be private
Browse files Browse the repository at this point in the history
  • Loading branch information
xieyuheng committed Oct 26, 2024
1 parent ffa9059 commit c5540e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fidb/FiDb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export type FiDbConfig = {
export class FiDb implements Db {
constructor(public config: FiDbConfig) {}

private resolve(path: string): string {
resolve(path: string): string {
return resolvePath(this.config.directory(), path)
}

Expand Down

0 comments on commit c5540e1

Please sign in to comment.