Skip to content

Commit

Permalink
chore: deps
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillgroshkov committed Oct 3, 2024
1 parent 46f7806 commit 0f8e71b
Show file tree
Hide file tree
Showing 3 changed files with 558 additions and 548 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
"yargs": "^17.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@naturalcycles/bench-lib": "^3.0.0",
"@naturalcycles/dev-lib": "^15.0.3",
"@types/node": "^22.1.0",
Expand Down Expand Up @@ -74,7 +73,7 @@
"url": "https://github.com/NaturalCycles/nodejs-lib"
},
"engines": {
"node": ">=20.12.0"
"node": ">=20.13.0"
},
"description": "Standard library for Node.js",
"author": "Natural Cycles Team",
Expand Down
2 changes: 1 addition & 1 deletion src/fs/del.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export async function del(_opt: DelOptions | DelSingleOption): Promise<void> {
// console.log({ dirnamesSorted })

const deletedDirs: string[] = []
for await (const dirpath of dirnamesSorted) {
for (const dirpath of dirnamesSorted) {
if (await isEmptyDir(dirpath)) {
// console.log(`empty dir: ${dirpath}`)
await fs2.removePathAsync(dirpath)
Expand Down
Loading

0 comments on commit 0f8e71b

Please sign in to comment.