Skip to content

Commit

Permalink
fix: lint fixes for PR #515
Browse files Browse the repository at this point in the history
  • Loading branch information
adelsz committed Sep 26, 2023
1 parent 72ba5bc commit b9a2b98
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/cli/src/worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ let connected = false;
const connection = new AsyncQueue();
const config: ParsedConfig = worker.workerData;

interface extendedParsedPath extends path.ParsedPath {
dir_base: string,
interface ExtendedParsedPath extends path.ParsedPath {
dir_base: string;
}

export default async function processFile({
Expand All @@ -34,7 +34,7 @@ export default async function processFile({
await startup(config.db, connection);
connected = true;
}
const ppath = path.parse(fileName) as extendedParsedPath;
const ppath = path.parse(fileName) as ExtendedParsedPath;
ppath.dir_base = path.basename(ppath.dir);

let decsFileName;
Expand Down

0 comments on commit b9a2b98

Please sign in to comment.