Skip to content

Commit

Permalink
update deps, format codes
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed May 10, 2024
1 parent d2fa213 commit a3b93ed
Show file tree
Hide file tree
Showing 37 changed files with 831 additions and 743 deletions.
2 changes: 2 additions & 0 deletions .prettierignore
@@ -1,3 +1,5 @@
/.tap
/.tshy
/node_modules
/example
/.github
Expand Down
1 change: 0 additions & 1 deletion .tshy/build.json
Expand Up @@ -2,7 +2,6 @@
"extends": "../tsconfig.json",
"compilerOptions": {
"rootDir": "../src",
"target": "es2022",
"module": "nodenext",
"moduleResolution": "nodenext"
}
Expand Down
2 changes: 1 addition & 1 deletion .tshy/commonjs.json
Expand Up @@ -9,6 +9,6 @@
"../src/**/*.mts"
],
"compilerOptions": {
"outDir": "../.tshy-build-tmp/commonjs"
"outDir": "../.tshy-build/commonjs"
}
}
2 changes: 1 addition & 1 deletion .tshy/esm.json
Expand Up @@ -7,6 +7,6 @@
],
"exclude": [],
"compilerOptions": {
"outDir": "../.tshy-build-tmp/esm"
"outDir": "../.tshy-build/esm"
}
}
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -88,9 +88,9 @@ Options:
are truthy, returning a Promise from a sync filter is the same
as just not filtering anything.)

The first argument to the filter is the path string. The
The first argument to the filter is the path string. The
second argument is either a `Dirent` or `Stats` object for that
path. (The first path explored will be a `Stats`, the rest
path. (The first path explored will be a `Stats`, the rest
will be `Dirent`.)

If a filter method is provided, it will _only_ remove entries
Expand Down

0 comments on commit a3b93ed

Please sign in to comment.