Skip to content

Commit

Permalink
chore!: change listFiles helper from sync to async (#537)
Browse files Browse the repository at this point in the history
  • Loading branch information
wellwelwel authored Jul 11, 2024
1 parent ae6ff4b commit 945c4fb
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 60 deletions.
1 change: 0 additions & 1 deletion .nycrc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
"src/modules/helpers/exit.ts",
"src/modules/helpers/get-pids.ts",
"src/modules/helpers/kill.ts",
"src/modules/helpers/list-files-sync.ts",
"src/modules/helpers/log.ts",
"src/modules/helpers/skip.ts",
"src/services/container.ts",
Expand Down
58 changes: 0 additions & 58 deletions src/modules/helpers/list-files-sync.ts

This file was deleted.

2 changes: 1 addition & 1 deletion src/modules/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export { kill } from './helpers/kill.js';
export { getPIDs } from './helpers/get-pids.js';
export { exit } from './helpers/exit.js';
export { log } from './helpers/log.js';
export { publicListFiles as listFiles } from './helpers/list-files-sync.js';
export { listFiles } from './helpers/list-files.js';
export { assertPromise } from './helpers/assert-promise.js';
export type { Code } from '../@types/code.js';
export type { Configs } from '../@types/poku.js';
Expand Down

0 comments on commit 945c4fb

Please sign in to comment.