Skip to content

Commit

Permalink
Meta tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Jun 18, 2023
1 parent a0e4028 commit 2455c60
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
1 change: 1 addition & 0 deletions index.test-d.ts
Expand Up @@ -72,6 +72,7 @@ expectType<NodeJS.ReadableStream>(
expectType<NodeJS.ReadableStream>(globbyStream('*.tmp', {gitignore: true}));
expectType<NodeJS.ReadableStream>(globbyStream('*.tmp', {ignore: ['**/b.tmp']}));

// eslint-disable-next-line unicorn/prefer-top-level-await
(async () => {
const streamResult = [];
for await (const path of globbyStream('*.tmp')) {
Expand Down
13 changes: 9 additions & 4 deletions package.json
Expand Up @@ -68,20 +68,25 @@
"devDependencies": {
"@globby/main-branch": "sindresorhus/globby#main",
"@types/node": "^17.0.18",
"ava": "^4.0.1",
"ava": "^5.3.1",
"benchmark": "2.1.4",
"get-stream": "^6.0.1",
"glob-stream": "^7.0.0",
"rimraf": "^3.0.2",
"tempy": "^3.0.0",
"tsd": "^0.19.1",
"tsd": "^0.28.1",
"typescript": "^4.5.5",
"xo": "^0.47.0"
"xo": "^0.54.2"
},
"xo": {
"ignores": [
"fixtures"
]
],
"rules": {
"@typescript-eslint/consistent-type-definitions": "off",
"n/prefer-global/url": "off",
"@typescript-eslint/consistent-type-imports": "off"
}
},
"ava": {
"files": [
Expand Down

0 comments on commit 2455c60

Please sign in to comment.